@-moz-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    padding: 4%;
    font-family: "Nunito sans",sans-serif;
}
.container > .left > img{
    width: 90%;
}
.left {
    padding: 0% 6% 6% 6%;
    float: left;
}
.right {
    font-family: "Nunito sans", sans-serif;
    display: table;
    line-height: 1.42857143;
    size: 14px;
    text-align: center;
    padding-left: 0;
}

.about-fields {
    opacity: .9;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    padding: 12px 16px;
}
.guidelines {
    text-decoration: none;
    color: rgb(95, 95, 95);
    cursor: pointer;
}
.guidelines:hover {
    text-decoration: underline;
}
.before-email {
    margin: 10px auto;
}
.about-div {
    padding: 1%;
    text-align: left;
}
input, textarea{
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    padding: 10px 18px;
    margin-top: 8px;
    border: 2px solid rgb(225, 225, 225);
    border-radius: 4px;
    outline: 0;
}
input:focus, textarea:focus {
    outline: 2px solid rgb(253, 207, 61);
}
input{
    width: 100%;
    width: -moz-available;          
    width: -webkit-fill-available;  
    width: fill-available;
}
textarea{
    width: 100%;
    width: -moz-available;          
    width: -webkit-fill-available;  
    width: fill-available;
    height: 5rem;
    font-size: small;
    resize: none;
}
.sendMessage{
    width: 40%;
    margin: 5px auto;
    height: 5vh;
    font-family: Montserrat, "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: bold;
    background-color: rgb(55,55,55);
    border:none;
    border-radius:3px;
    display: inline-block;
    align-items: center; 
    justify-content: center;
    color:white;
    cursor: not-allowed;
}
.sendMessage:hover {
    background-color: rgb(105, 105, 105);
}
.email {
    display: inline;
    font-weight: bold;
}

.bottom-div {
    text-align: center;
    height: 30px;
    width: 100%;
    background-color: rgb(55, 55, 55);
    padding: 10px 0%;
    clear: both;
    overflow: hidden;
    opacity: 80%;
    bottom: 0;
}
.bottom-div a {
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    color: rgb(225, 225, 225);
    padding: 10px 16px;
}
.bottom-div a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1000px){
    .sendMessage {
        width: 100%;
    }
    .right {
        line-height: 1.42857143;
        size: 14px;
        text-align: center;
        padding-left: 0;
    }
}