*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    background: linear-gradient(45deg,#ffffff,#3977e9);
    background-attachment: fixed;
}
section{
    position: fixed;
    top: 80px;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
}
section .ImageBox{
    position: relative;
    width: 50%;
    height: 100%;
}
section .ImageBox::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg,#3977e9,#03a9f4);
    z-index: 1;
    mix-blend-mode: screen;
}
section .ImageBox img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section .ContentBox{
    display: inline-block;
    width: 50%;
    height: 100%;
}
section .ContentBox .FormBox{
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow:0 2px 5px 0 rgba(0,0,0,0.25),0 2px 10px 0 rgba(0,0,0,0.25);
    background: rgb(255 255 255 /60%);
    width: 50%;
}
section .ContentBox .FormBox h2{
    color: gray;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 4px solid #3977e9;
    letter-spacing: 1px;
}
section .ContentBox .FormBox .FormInputBox{
    margin-bottom: 20px;
}
section .ContentBox .FormBox .FormInputBox span{
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: dimgrey;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
}
section .ContentBox .FormBox .FormInputBox input{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid darkslategrey;
    font-size: 16px;
    letter-spacing: 1px;
    color: dimgray;
    background: transparent;
    border-radius: 30px;
}
section .ContentBox .FormBox .FormInputBox input[type="submit"]{
    background: #3977e9;
    color: white;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}
section .ContentBox .FormBox .FormInputBox input[type="submit"]:hover{
    background: #2e60bd;
}
section .ContentBox .FormBox .FormInputBox p{
    color: darkslategrey;
}
section .ContentBox .FormBox .FormInputBox p a{
    color: #3977e9;
}
section .ContentBox .FormBox .FormInputBox p a:hover{
    color: #2e60bd;
}
@media screen and (max-width:1000px) {
    section .ContentBox .FormBox{
        width: 70%;
    }
}
@media screen and (max-width:768px) {
    section .ImageBox{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
    }
    section .ContentBox{
        display: inline-block;
        width: 100%;
        height: 100%;
    }
    section .ContentBox .FormBox {
        box-shadow:0 2px 5px 0 rgba(0,0,0,0.25),0 2px 10px 0 rgba(0,0,0,0.25);
        border-radius: 10px;
        width: 90%;
        background: rgb(255 255 255 /90%);
        margin-left: auto;
        margin-right: auto;
    }
}