:root {
    --bg: #0b0b0f;
    --panel: #141419;
    --text: #ffffff;
    --muted: #b9b9c3;
    --accent: orangered;
    --border: orangered;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --radius: 5px
}

*,
*::before,
*::after {
    box-sizing: border-box
}


.reset-page {
    max-width: 540px;
    margin: 100px auto;
    padding: 0 20px
}

.reset-card {
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px
}

.reset-card h2 {
    margin: 0 0 18px;
    text-align: center;
    font-size: 28px
}

.reset-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-width: 0
}

.field {
    min-width: 0
}

.field label {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px
}

.field input {
    width: 100%;
    max-width: 100%;
    display: block;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s
}

.field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 69, 0, .2)
}

.btn {
    appearance: none;
    border: none;
    background: linear-gradient(180deg, #ff7a36, #ff4500);
    color: #1a1405;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 69, 0, .35);
    transition: transform .08s ease, box-shadow .2s ease
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 6px 14px rgba(255, 69, 0, .28)
}

.btn-wide {
    width: 100%;
    font-size: 1.1rem
}