﻿/* SSO Authentication Button Styles */
.sso-button {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .sso-button:hover {
        border-color: #4285f4;
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
        transform: translateY(-2px);
    }

    .sso-button svg {
        width: 24px;
        height: 24px;
    }

    .sso-button.microsoft:hover {
        border-color: #00a4ef;
        box-shadow: 0 2px 8px rgba(0, 164, 239, 0.2);
    }

.sso-buttons-container {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Alert message customization for auth pages */
.alert {
    font-size: 0.875rem;
}
