112 lines
2.1 KiB
CSS
112 lines
2.1 KiB
CSS
|
.contact-us-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
width: 100%;
|
||
|
margin-top: 50px;
|
||
|
}
|
||
|
|
||
|
.contact-us-title-question {
|
||
|
font-size: 13px;
|
||
|
color:rgb(129, 68, 88);
|
||
|
font-family: Source Sans Pro;
|
||
|
font-weight: 100;
|
||
|
text-transform: uppercase;
|
||
|
letter-spacing: 0.2rem;
|
||
|
}
|
||
|
|
||
|
.contact-us-title-big {
|
||
|
font-size: 24px;
|
||
|
color: black;
|
||
|
font-family: Space Grotesk;
|
||
|
font-weight: bold;
|
||
|
margin: 15px 0px;
|
||
|
}
|
||
|
|
||
|
.contact-us-title-description {
|
||
|
font-size: 13px;
|
||
|
color:rgb(32, 32, 32);
|
||
|
font-family: Space Grotesk;
|
||
|
font-weight: 100;
|
||
|
text-align: center;
|
||
|
line-height: 20px;
|
||
|
|
||
|
width: 350px;
|
||
|
}
|
||
|
|
||
|
.contact-us-form-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 20px;
|
||
|
|
||
|
width: 400px;
|
||
|
}
|
||
|
.contact-us-name-container {
|
||
|
margin-top: 30px;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
gap: 20px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.contact-us-textfield-container {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: stretch;
|
||
|
align-items: start;
|
||
|
gap: 2px;
|
||
|
|
||
|
width: 100%;
|
||
|
}
|
||
|
.contact-us-textfield {
|
||
|
height: 50px;
|
||
|
background-color: white;
|
||
|
border: solid 0.5px #d8d8d8;
|
||
|
|
||
|
width: 100%;
|
||
|
text-indent: 10px;
|
||
|
}
|
||
|
.contact-us-textfield-label {
|
||
|
font-family: Space Grotesk;
|
||
|
font-size: 16px;
|
||
|
font-weight: 900;
|
||
|
letter-spacing: 0.1rem;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.contact-us-textfield-label:after {
|
||
|
color: #e32;
|
||
|
content: '*';
|
||
|
display: inline;
|
||
|
}
|
||
|
.contact-us-textarea {
|
||
|
height: 150px;
|
||
|
background-color: white;
|
||
|
border: solid 0.5px #d8d8d8;
|
||
|
|
||
|
width: 385px;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
.contact-us-button {
|
||
|
height: 60px;
|
||
|
width: 400px;
|
||
|
margin-top: 20px;
|
||
|
|
||
|
background-color: #02114A;
|
||
|
color: white;
|
||
|
border-radius: 5px;
|
||
|
|
||
|
font-family: Space Grotesk;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.contact-us-button:hover { cursor: pointer;}
|