You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
995 B
50 lines
995 B
|
|
.content {
|
|
padding: 40px 20px;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.content h3 {
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
.content form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.content form label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content form input,
|
|
.content form textarea,
|
|
.content form button {
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.content form textarea {
|
|
resize: vertical;
|
|
height: 100px;
|
|
}
|
|
|
|
.content form button {
|
|
background-color: #00416A;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.content form button:hover {
|
|
background-color: #62b9d1;
|
|
}
|
|
|
|
|