html, body, .body{
    border: 0;
    margin: 0;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    background-color: #e2e7ea;
}
.header {
    position: absolute;
    left: 10vw;
    top: 4vh;
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#logo {
    width: 71px;
    height: 71px;
    border: 3px solid #f7f7ff;
    background: url("/Resources/imgs/logo.jpg");
    background-size: contain;
    border-radius: 20px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.sfondo {
    display: none;
}
#form_container {
    height: calc(96vh - 350px);
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#support_form {
    position: relative;
    margin-top: 5vh;
    height: 75vh !important;
}
#support_form > p {
    font-weight: bold;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 2vh;
    width: 80vw;
}
#support_form > button {
    background: linear-gradient(30deg, #6e0054, #130072);
    position: relative;
    bottom: 0;
    left: 0vw;
    margin-top: 2em;
    width: calc(72vw + 2.6em);
    padding: 1em 2em;
    border-radius: 1em;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 1em;
    outline:0;
    text-decoration: none;
}
.emailSent {
    background: linear-gradient(30deg, #50C75F, #157D22) !important;
}
#support_form > input {
    display: none;
    height: 6vh;
}
#support_form > label {
    height: 4vh;
}
label {
    border: 3px solid #abafb1;
    display: block;
    font-family: sans-serif;
    color: #abafb1;
    width: 70vw;
    font-size: 3vh;
    margin: 5vw 0;
    height: 3vh;
    padding: 1em 1.3em;
    border-radius: .75em;
    position: relative;
    overflow: hidden;
    transition: color 500ms;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
   
label:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}
   
label:after {
    content: '\f00c';
    padding-right: .5em;
    position: absolute;
    font-family: FontAwesome;
    top: 0;
    bottom: 0;
    left: -100%;
    right: 100%;
    border-radius: .75em;
    z-index: -1;
}
   
input:checked + label {
    color: #e2e7ea;
    border: 0;
    background: linear-gradient(45deg, #e6004b, #6e0054);
    background-color: #6e0054;
    transition: color, background-color ease-in 300ms;
}

/* EMAIL FORM */

#email_form {
    visibility: hidden;
    position: absolute;
    color: black;
    font-size: 1.2em;
    height: 60vh;
    width: 100vw;
    left: 0;
    overflow-x: hidden;
    top: 20vh;
}
#email_form > input {
    position: relative;
    width: 80vw;
    height: 9vw;
    color: black;
    background-color: #e2e7ea;
    text-transform: capitalize;
    border: 0;
    margin: 2vh 8vw 2vh 8vw;
    padding: 0 2vw 0 2vw;
    border-radius: 0.7em;
}
#email_form > p {
    font-weight: bold;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 2vh;
}
#contenuto {
    position: relative;
    width: 80vw;
    height: 17vh !important;
    color: black;
    background-color: #e2e7ea;
    border: 0;
    margin: 2vh 0vw 2vh 8vw;
    padding: 1vw 2vw 1vw 2vw;
    border-radius: 0.7em;
    font-size: 0.7em;
}

#email_form > button {
    background: linear-gradient(30deg, #6e0054, #130072);
    width: 84vw;
    margin-left: 8vw;
    position: relative;
    padding: 0.5em 1.5em;
    border-radius: 1em;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 0.8em;
    outline:0;
    text-decoration: none;
}
.footer {
    position: relative;
    margin-top: 100px;
    height: auto;
    width: 100%;
    background-color: black;
    color: white;
    overflow-x: hidden;
}

.text_footer {
	font-size: 3vw;
}
#links {
	width: 100vw;
	padding: 10px;
	position: relative;
	text-align: center;
}
#links > a {
    color: white;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1.5vw;
    margin-left: 20px;

}
.copy {
    line-height: 20px;
    text-align: center;
    width: 100vw;
    padding: 10px 0 0 0;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media only screen and (min-width: 750px) {
    body {
        overflow-x: hidden;
        width: 100vw;
        margin: 0;
        border: 0;
    }
    .header {
        position: absolute;
        left: 17vw;
        top: 10vh;
        display: initial;
    }
    .sfondo {
        display: initial;
        position: fixed;
        top:0;
        left: 0;
        width: 100%;
        bottom: 0;
        transform: none;
        right: 0;
        height: 100%;
        object-fit: cover;
    }
    #form_container {
        align-items: flex-start;
        width: 66vw;
        margin-left: 17vw;
    }
    #support_form {
        padding: 50px 0;
        height: auto;
        width: 33.5vw;
    }
    #support_form > p {
        margin-top: 1em;
        font-size: 1.3em;
        text-align: left;
    }
    #support_form > button {
        position: relative;
        padding: 1em 1em;
        font-size: 1em;
        width: 33.5vw;
    }
    label {
        width: auto;
        font-size: 1.3em;
        line-height: 1.5em;
        margin: 1.2vh 0;
        height: 2em;
    }
    #email_form > p {
        margin-left: 0vw;
        text-align: left;
    }
    #email_form > input {
        margin: 1h 8vw 1vh 8vw;
    }
    .moveRight {
        margin-left: 8vw !important;
    }
    #email_form {
        margin-top: 10vh;
        margin-left: 17vw;
        width: 35vw;
    }
    #email_form > input {
        float: left;
        font-size: 1em;
        height: 2em;
        width: 9vw;
        margin-top: 2vh;
        margin-bottom: 2vh;
        margin-left: 0vw;
        margin-right: 0;
        outline: none;
    }
    #contenuto {
        width: 30vw;
        font-size: 1em;
        outline: none;
        margin-left: 0vw;
    }
    #email_form > button {
        width: 34vw;
        padding: 1em 2.5em;
        border-radius: 1em;
        text-transform: uppercase;
        font-weight: bold;
        color: white;
        font-size: 1em;
        margin-left: 0vw;
    }
    .footer {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .text_footer {
        font-size: 0.9vw;
    }
    .copy {
        text-align: left;
        margin-left: 17vw;
    }
    #links {
        width: 100vw;
        padding: 10px;
        position: relative;
        text-align: center;
    }
    #links > a {
        font-size: 0.7vw;
    }
}

@media only screen and (max-height: 800px) {
    .support_form > button {
        margin-top: 0 !important;
        border: 3px solid black;
    }
}