.reset-password-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background: #f8f9fb;
}

.reset-password-container {
    width: 100%;
    max-width: 460px;

    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);

    padding: 40px;
}

.reset-password-container h1 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.reset-password-container p {
    margin: 0 0 28px;
    color: var(--text-light);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input {
    width: 100%;
    height: 50px;

    padding: 0 16px;

    border: 1px solid var(--border);
    border-radius: 12px;

    font-size: .95rem;

    transition: .2s;
}

.form-group input:focus {
    outline: none;
    border-color: #171717;
}

.reset-btn {
    width: 100%;
    margin-top: 12px;
}