.reset-container {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-box,
.reset-success {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reset-box h2,
.reset-success h2 {
    margin-bottom: 20px;
}

.reset-box input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.reset-box button {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.reset-box button:hover {
    background: #218838;
}

.reset-back {
    display: inline-block;
    margin-top: 15px;
    color: #007bff;
}