/* Social Login Buttons Styling */
.auth-social-logins {
    margin-top: 1.5rem;
    width: 100%;
}

.social-login-button {
    margin-bottom: 10px;
    width: 100%;
}

.social-login-button a {
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Google button styling - already handled by Google SDK */
.google-signin {
    display: flex;
    justify-content: center;
}

/* Facebook button styling - already handled by Facebook SDK */
.facebook-signin {
    display: flex;
    justify-content: center;
}

/* Apple Login Button */
.apple-signin a {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.apple-signin a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Twitter/X Login Button */
.twitter-signin a {
    background-color: #1DA1F2;
    color: #fff;
    border-color: #1DA1F2;
}

.twitter-signin a:hover {
    background-color: #0d8ecf;
    color: #fff;
    border-color: #0d8ecf;
}

/* Responsive styling */
@media (max-width: 576px) {
    .social-login-button {
        width: 100%;
    }
}

/* Animation effect */
.social-login-button a {
    position: relative;
    overflow: hidden;
}

.social-login-button a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.social-login-button a:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Social Login Buttons Styles */
.social-login-container {
    margin: 1.5rem 0;
    text-align: center;
}

.social-login-divider {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    color: var(--text_secondary_color, #6e6b7b);
}

.social-login-divider::before,
.social-login-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid var(--border_color, #ebe9f1);
}

.social-login-divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.786rem 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    border-radius: 0.358rem;
    border: 1px solid var(--border_color, #ebe9f1);
    font-weight: 500;
    color: var(--text_color, #5e5873);
    background-color: #fff;
    transition: all 0.15s ease-in-out;
    width: 100%;
    cursor: pointer;
}

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

.btn-social i, .btn-social .fab {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-social.btn-facebook {
    color: #fff;
    background-color: #3b5998;
    border-color: #3b5998;
}

.btn-social.btn-google {
    color: #757575;
    background-color: #ffffff;
    border-color: #dbdbdb;
}

.btn-social.btn-apple {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn-social.btn-twitter {
    color: #fff;
    background-color: #1DA1F2;
    border-color: #1DA1F2;
}

.social-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

/* Responsive design */
@media (max-width: 767px) {
    .btn-social {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}