/* Login page specific CSS */

.login-container {
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-login {
    width: 100%;
    height: 3rem;
    background: #004aad;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 74, 173, 0.3);
    transition: all 0.2s;
}

.btn-login:hover {
    background: #003d91;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px -3px rgba(0, 74, 173, 0.4);
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-container .login-oauth-divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0 1rem;
    gap: 1rem;
}

.login-container .login-oauth-divider-text {
    color: #64748b;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.login-container .login-oauth-divider::before,
.login-container .login-oauth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.login-container .login-oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-container .btn-oauth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 2.75rem;
    padding: 0 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
    transition: all 0.2s;
}

.login-container .btn-oauth:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.login-container .btn-oauth-google:hover {
    border-color: #dadce0;
    background: #f8fafc;
}

.login-container .btn-oauth-apple {
    background: #000;
    color: #fff;
    border-color: #000;
}

.login-container .btn-oauth-apple:hover {
    background: #1a1a1a;
    color: #fff;
}

.login-container .btn-oauth-microsoft:hover {
    border-color: #0078d4;
    background: #f3f9fd;
}

.footer-link-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-link-text {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #004aad;
    background: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    border: 2px solid #004aad;
    box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.4);
    animation: ctaPulse 2s ease-in-out infinite;
    transition: all 0.2s ease;
}

.footer-link-button:hover {
    color: white !important;
    background: #003d91;
    border-color: #003d91;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 74, 173, 0);
    }
}

.footer-link-icon {
    width: 1rem;
    height: 1rem;
}

.footer-trial-info {
    margin-top: 1rem;
    text-align: center;
}

.footer-trial-info-text {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.5;
    max-width: 20rem;
    margin: 0 auto;
}

.footer-trial-info-text strong {
    color: #64748b;
    font-weight: 500;
}

.mfa-block {
    margin-bottom: 1.5rem;
}

.mfa-block p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
