51 lines
817 B
CSS
51 lines
817 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
padding: 20px;
|
|
background-color: #f7f7f7;
|
|
}
|
|
|
|
.form-container form {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
padding: 20px;
|
|
background-color: white;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
form h2 {
|
|
margin-top: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
textarea {
|
|
width: 100%;
|
|
padding: 8px;
|
|
margin-bottom: 15px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
background-color: #ff6600;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
background-color: #ff6600;
|
|
}
|