body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f4f6f9;
    color: #111;
}

h2 {
    margin-bottom: 20px;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    background: #fff;
    padding: 40px;
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.btn-primary:hover {
    opacity: 0.9;
}

.muted {
    font-size: 13px;
    color: #666;
    text-align: center;
}