/* Login Page Styles */

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /*background-color: #3B82F6;*/ /* Tailwind blue-500 */
}

.login-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 520px;
    padding: 1.5rem !important;
}

.login-content {
    display: flex;
    width: 100%;
}

.login-form {
    width: 100%;
}

.login-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 8rem; /* 32 * 0.25rem */
    height: 8rem;
}

.logo-section {
    padding: 32px 20px;
    text-align: center;
    background-color: white;
}

/* TAM SSO button styles */
tam-sso {
    display: block;
    width: 100%;
}

tam-sso button {
    width: 100% !important;
    background-color: #175CFF !important; 
    border-radius: 0.5rem !important;
    font-weight: 500 !important;
    color: white !important;
    transition: background-color 0.2s !important;
    padding: 12px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    border: none;
    cursor: pointer;
}

tam-sso button img {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
}

tam-sso button span {
    margin: 0 !important;
    font-size: 16px !important;
}

tam-sso button:hover {
    background-color: #174DCD !important; 
}

.tam-sso-error {
    color: #cc0400;
    margin-top: 10px;
    display: none;
}
