/* SSO Button Styles */
.btn-sso {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #fff !important; /* Force white text */
    text-decoration: none !important;
}

.btn-sso:hover {
    opacity: 0.9;
    color: #fff !important; /* Force white text on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-google {
    border-color: #4285F4;
}

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

.btn-microsoft {
    background-color: #00a1f1;
    border-color: #00a1f1;
}

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

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

/* Ensure text contrast */
.btn-sso img {
    margin-right: 10px;
}