.auth-container {
    max-width: 480px;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.auth-card h1 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.auth-card form {
    box-shadow: none;
    padding: 0;
}

.auth-card .field-grid {
    gap: 18px;
}

.auth-card .field-grid > div {
    min-width: 0;
}

.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="text"] {
    width: 100%;
    border: 1px solid #cfd5de;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 15px;
    background: #fff;
}

.status {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.status.error {
    background: #ffe8e6;
    color: #a12622;
    border: 1px solid rgba(161, 38, 34, 0.3);
}

.status.info {
    background: #e7f5ff;
    color: #0b5394;
    border: 1px solid rgba(11, 83, 148, 0.25);
}

.actions {
    margin-top: 20px;
}

.actions button {
    width: 100%;
}

.password-field {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.password-field input[type="password"],
.password-field input[type="text"] {
    flex: 1;
    min-width: 0;
}

.password-toggle {
    border: none;
    border-radius: 999px;
    background: #e2e8f0;
    color: #0f172a;
    padding: 0 14px;
    min-width: 68px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.password-toggle:hover {
    background: #cbd5f5;
}
