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.
 
 
 

38 lines
544 B

form > div {
margin-bottom: 20px;
}
form > div > label {
display: block;
}
form > div > div {
margin-top: 5px;
}
form input, form textarea {
border: 2px solid #12A89D;
padding: 10px;
border-radius: 5px;
min-width: 250px;
background-color: #d1f9e9;
}
form button {
color: #FFFFFF;
border: none;
background-color: #12A89D;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
form button:hover {
transition: 0.5s ease-in;
color: #d1f9e9;
background-color: #222222;
box-shadow: 0 0 10px 5px #12A89D;
}