body{
    padding: 1.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 100%;
}
.wrapper{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 100%;
    height: 100%;
}
.logo-container{
    display: flex;
    margin: auto;
    justify-content: space-around;
    max-width: 700px;
}

.logo{
    width: 230px;
    margin: 20px 20px;
}

.form-wrapper{
    display: flex;
    margin: auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    background-color: #008ad1;
    width: fit-content;
    padding: 10px 25px 25px;
    border-radius: 10px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.form-select{
    font-family: 'Outfit',sans-serif;
    font-weight: 300;
    font-size: 17px;
    padding: 7px 5px;
    background-color: #fff;
}

.form-select-container,.form-textarea-container{
    display: flex;
    flex-direction: column;
    margin: 7px 0;
}

.form-select-container label,.form-textarea-container label{
    padding-bottom: 5px;
    font-size: 18px;
    color: #fff;
    width: fit-content;
}

.form-select-option{
    font-weight: 300;
    color: #c8c8c8;
    border-radius: 0;
    border: 1px solid #fff;
}
/*
.form-textarea-container{
    
}
*/
.form-textarea{
    background-color: #fff;
    height: fit-content;
    min-height: 300px;
    font-size: 17px;
    font-weight: 300;
    padding: 7px 10px;
}
.form-textarea::placeholder{
    color: #a7a7a7;
    font-weight: 300;
    font-size: 17px;
}
.send-button-aura{
    margin: 13px auto 0;
    width: 100%;
}
.send-button{
    cursor: pointer;
    padding: 5px;
    width: 100%;
}
.loader-container{
    width: 70px;
    display: flex;
    justify-content: center;
    margin: auto;
    transition: opacity .5s ease-in;
    opacity: 1;
}
.inactive{
    opacity: 0;
}

@media screen and (max-width: 500px) {
    body{
        padding: 4%;
    }
    .logo-container{
        width: 100%;
    }
    .logo{
        width: 40%;
        margin: 20px 5px;
    }
    .form-select{
        width: auto;
    }
    .form-textarea{
        width: auto;
        min-height: 200px;
    }
    
}