html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}


a { color: #676767; }

/*
 * ** Wrapper and Main structure
 * */

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: #E9E9E9; 
}

.content-box {
    display: flex;
    flex-flow: column nowrap;
    height: 80%;
    width: 80%;
    background: #FCFCFC;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 25px;
    transition: all .4s, height 1ms;
}

/*
 * ** Media Queries
 * */

@media screen and (max-width: 1024px), (max-height: 800px)  {
    .content-wrapper {
        height: 700px;
        align-items: flex-end;
    }
    .content-box {
        box-shadow: none;
        height: 90%;
        width: 100%;
        min-height: 700px;
        box-shadow: none;
        border-radius: 0px;
        transition: all .4s, height 1ms;
    }
    .infobox {
        font-size: 150% !important;
    }
    .additional-info {
        display: none;
    }
    .contact-form {
        width: 100% !important; 
        height: 500px !important;
        
    }
    .footer-row {
        
    }
}


/*
 * ** Upper Row
 * */

.upper-row {
    height: 85px;
    padding-top: 20px;
}

.infobox {
    text-align: center;
    font-size: 200%;
    font-family: 'Poppins';
    font-weight: bold;    
}

/*
 * ** Main Row (includes Contactform)
 * */

.main-row {
    display: flex;
    flex-flow: row nowrap;
    margin-top: 75px;
    height: 100%;
}

.additional-info, .contact-form {
    height: 100%;
    width: 50%;
}

.additional-info {
    text-align: center;
    margin-top: 150px;
}

.contact-form {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
}

.final-form {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
}

.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: row-reverse nowrap;
    min-height: 10px;
    padding: 10px 25px;
    margin-top: 10px;
    border-radius: 25px;
    background: #E9E9E9;
}

i {
    margin-left: 15px;
    color: #545454;
    transition .5s;
}

.input-wrapper > input[type="text"], 
.input-wrapper > textarea {
    outline: none;
    border: none;
    background: inherit;
    padding: 6px;
    font-size: 100%;
    margin-left: 15px;
}

.input-wrapper > textarea {
    min-height: 50px;
    max-height: 400px;
    min-width: 150px;
    max-width: 400px;
}

.input-fields {
	width: 100%;
}

input[type="submit"] {
    line-height: 35px;
    font-size: 112.5%;
    min-height: 30px;
    text-transform: uppercase;
    border: none;
    background: #1e398f;
    color: #FFF;
    border-radius: 25px;
    
}

input[type="text"]:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}

.preword {
    padding: 10px 0px;
    font-weight: bold;
}

.input-wrapper > input[type="text"]:focus + i,
.input-wrapper > textarea:focus + i {
    color: #1e398f;
    margin-left: 4px;
    margin-right: 11px;
    transition: .4s;
}

.input-wrapper:last-of-type {
    min-height: 150px;
}

.footer-row {
    display: flex;
    justify-content: space-evenly;
    padding: 15px;
    color: #676767;
}
