/* 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;
}

.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;
    gap: 0.5rem;
    color: #004aad;
    background: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    border: 1.5px solid #004aad;
    transition: all 0.2s ease;
}

.footer-link-button:hover {
    background: #004aad;
    color: white;
}

.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;
}
