@charset"utf-8";
:root {
    --blue: #19306e;
    --yellow: #f8b100;
    --brown: #431f02;
    --beige: #f2ede9;
    --brown2: #431f02;
    --rightbeige: #fdfdfc;
}
.content {
    position: relative;
    z-index:999
}
.hibiscus {
    position: fixed;
    height: fit-content;
    right: 10px;
    bottom: 10px;
}
.hibiscus > img {
    height: 120px;
    width: fit-content;
}
.pageTitle {
    margin-top: 100px;
    text-align: center;
}
.pageTitle > h1 {
    color: var(--brown);
     font-size: 30px;
}
.about {
    font-size: 17px;
    text-align: center;
    margin: 20px;
}
.about > a {
    font-size: 12px;
    color: var(--brown2);
}
.form {
    display: flex;
    justify-content: center;
}
.form > .inner {
    width: fit-content;
    background-color: var(--rightbeige);
    padding: 50px;
}
.sendForm > div > label {
    color: var(--brown);
    font-size: 12px;
    font-weight: bold;
}
.sendForm > div > input {
    border: 1px solid;
    border-radius: 2px;
}
.privacyURL {
    margin-top: 0;
}
.privacyURL > a {
    text-decoration: none;
    margin-top: 0;
}
.width250 > input {
    width: 300px;
    height: 25px;
}
.sendForm > div > textarea {
    width: 300px;
    height: 100px;
    resize: none;
    margin-bottom: 10px;
}
.privacyURL2 {
    margin: 0;
}
.privacyURL2 > a {
    text-decoration: none;
    font-size: 10px;
    margin-left: 22px;
}
.sendForm > div > button {
    margin-top: 20px;
    width: 300px;
    height: 30px;
    border: var(--blue) 2px solid;
    border-radius: 8px;
    background-color: var(--blue);
    color: #FFFFFF;
    font-size: 13px;
}
.sendForm > div > button:hover {
    background-color: #FFFFFF;
    color: var(--blue);
    cursor: pointer;
}
