34 lines
591 B
CSS
34 lines
591 B
CSS
.contact-left {
|
|
width: 100%; /* Make the form take the whole width */
|
|
}
|
|
|
|
form {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
input,
|
|
textarea,
|
|
button {
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
button {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
max-width: 150px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
} |