html,body{
    background: #efede6;
}

#main-page-container{
    width: 80%;
   	max-width: 1140px;
    margin: 90px auto;
    margin-top: 100px;
}

#page-header{
    max-width: 980px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
    margin-top: 160px;
}
    
#page-header h1{
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-container{
    display: grid;
}

.two-columns{
    grid-template-columns: 1fr 1fr;
}

#mini-site-form-container label{
    font-family: 'Arboria-Book';
    font-weight: 600;
    font-size: 16px;
}

/*-- Retreat Overview --*/
#retreat-overview{
    padding: 50px;
    background: #fff;
    border-radius: 25px;
    margin-top: 100px;
}

#retreat-overview input,
#retreat-overview textarea{
    background: #efede6;
    border: none;
    border-radius: 7px;
    border: 2px solid #fff;
}

#retreat-overview input:focus,
#retreat-overview textarea:focus{
    border: 2px solid #506d85;
}

input[type='date']:hover{
    background: #506d85 !important;
    color: #fff;
    cursor: pointer;
}

.dropzone.dz-clickable{
    background: #efede6;
    border-radius: 10px;
    height: 250px;
    position: relative;
}

.dz-default.dz-message{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.upload-files-icon{
    max-width: 40px;
    margin: 0 auto;
}

#retreat-overview .form-container{
    grid-gap: 30px;
    grid-template-columns: 1fr 1.5fr;
}

#retreat-name-container label,
#retreat-name-container input{
    width: 100%;
}

#retreat-dates-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}
#retreat-dates-container input,
#retreat-dates-container label{
    width: 100%;
}

#retreat-description-container label,
#retreat-description-container textarea{
    width: 100%;
}
#retreat-description-container textarea{
    height: 120px;
}

.dropzone.dz-clickable{
    border-style: dashed;
}
.dropzone.dz-clickable:hover{
    background: #fff !important;
    border-color: #506d85;
}

@media all and (max-width: 600px){
    #main-page-container{
        width: 100%;
    }
    #page-header{
        margin: 0 20px;
        margin-bottom: 45px;
    }
}