body{
font-family:Arial, sans-serif;
background:#f4f6f9;
margin:0;
padding:0;
}

/* Page title */

h2{
text-align:center;
margin-top:40px;
color:#333;
}

/* Form container */

form{
width:420px;
margin:30px auto;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.15);
}

/* Labels */

label{
font-weight:bold;
display:block;
margin-top:15px;
color:#333;
}

/* Inputs */

input, select{
width:100%;
padding:10px;
margin-top:5px;
border:1px solid #ccc;
border-radius:5px;
font-size:14px;
}

/* Buttons */

button{
margin-top:20px;
width:100%;
padding:12px;
background:#3498db;
color:white;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

button:hover{
background:#2980b9;
}

/* Back button */

.back-btn{
display:block;
text-align:center;
margin-top:20px;
text-decoration:none;
color:#3498db;
font-weight:bold;
}

.back-btn:hover{
text-decoration:underline;
}

/* Mobile responsive */

@media(max-width:600px){

form{
width:90%;
}

}