.social-login-container {
    margin: 30px 0;
    text-align: center;
    font-family: Tahoma, "Segoe UI", sans-serif;
}

.social-login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.social-login-separator::before,
.social-login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.social-login-separator span {
    padding: 0 15px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px; /* Modern rounded look */
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn-social i {
    margin-right: 12px;
    font-size: 18px;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-social:active {
    transform: translateY(0);
}

/* Brand Colors */
.btn-line {
    background-color: #00c300;
    color: #ffffff !important;
    border: 1px solid transparent;
}
.btn-line:hover {
    background-color: #00b300;
}

.btn-facebook {
    background-color: #1877f2;
    color: #ffffff !important;
    border: 1px solid transparent;
}
.btn-facebook:hover {
    background-color: #166fe5;
}

.btn-google {
    background-color: #ffffff;
    color: #3c4043 !important;
    border: 1px solid #dadce0;
}
.btn-google:hover {
    background-color: #f8f9fa;
}

/* Tablet and Desktop Layout */
@media (min-width: 600px) {
    .social-login-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .btn-social {
        flex: 1;
        max-width: 100%; /* allows taking equal space */
    }
}
