<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
.responsive-form {
max-width: 600px;
width: 100%;
border-radius: 4px;
border: 2px solid #04AA6D;;
background-color: #f2f2f2;
padding: 20px;
}
form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
label {
min-width: 48%;
margin-bottom: 10px;
}
input[type=text], select {
min-width: 45%;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
}
textarea {
min-width: 45%;
height: 150px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
}