body {
    margin: 0;
    background: #0b1220; /* более глубокий фон */
    font-family: Inter, system-ui, Arial;
    color: #e5e7eb;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

/* карточка */
.box-auth {
    background: #111827;
    padding: 28px;
    border-radius: 14px;
    width: 320px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

/* заголовок (если есть h2) */
.box-auth h2 {
    margin: 0 0 18px 0;
    font-size: 18px;
    font-weight: 600;
    color: #f3f4f6;
}

/* поля */
.box-auth input {
    width: 100%;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    border-radius: 10px;
    border: 1px solid #1f2937;
    background: #0f172a;
    color: #e5e7eb;
    outline: none;
    transition: 0.2s;
    text-align: center;
}

/* фокус */
.box-auth input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

/* кнопка */
.box-auth button {
    width: 100%;
    padding: 11px;

    margin-top: 10px;

    background: #3b82f6;
    border: none;
    color: white;

    border-radius: 10px;
    cursor: pointer;

    font-weight: 500;
    transition: 0.2s;
}

/* hover */
.box-auth button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* active */
.box-auth button:active {
    transform: translateY(0);
}

/* ошибка */
.error-auth {
    color: #ef4444;
    margin-top: 10px;
    font-size: 13px;
}

/* мелкий текст (если добавишь) */
.small-text {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 10px;
}