/* Auth CSS - Outlook style */
.auth-container {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f0f2f5;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
}

.auth-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 440px;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.auth-header {
    margin-bottom: 2rem;
    text-align: left;
}

.auth-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.auth-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.auth-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    background-color: var(--bg-card);
    border-radius: 0px;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
    border-bottom-width: 2px;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.auth-link {
    color: var(--accent-color);
}

.auth-link:hover {
    text-decoration: underline;
}

.btn-login {
    background-color: var(--accent-color);
    color: white;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background-color: var(--accent-hover);
}