.reset-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 480px;
    padding: 0 20px;
}

.reset-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reset-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #202020;
    margin: 0;
    text-align: center;
}

.reset-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.reset-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reset-form-group label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #202020;
}

.reset-form-group input {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #d7d7d7;
    background: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.reset-form-group input:focus {
    outline: none;
    border-color: rgba(0, 158, 255, 1);
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.15);
}

.reset-form-group input::placeholder {
    color: #999;
}

.reset-button {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background .3s ease, transform .15s ease;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 158, 255, 1);
    color: #fff;
}

.reset-button:hover {
    background: rgba(0, 140, 225, 1);
}

.reset-button:active {
    transform: translateY(1px);
}

.reset-back-link {
    text-align: center;
    margin-top: 8px;
}

.reset-back-link a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color .3s ease;
}

.reset-back-link a:hover {
    color: rgba(0, 158, 255, 1);
}

@media (max-width: 520px) {
    .reset-form {
        padding: 32px 24px;
    }

    .reset-title {
        font-size: 24px;
    }
}