html{
    height: 100%;
}
body{
    background: #899FA9;
    height: 100%;
	margin: 0;
	padding: 0;
    font-family: 'K2D', sans-serif;
}
.main-container{
	background: linear-gradient(135deg, #cfd8dc 0%,#607d8b 100%,#b0bec5 100%);
	padding: 50px 0;
	min-height: 100%;
}
.zoom{
	width: 30%;
	margin: 50px auto;
	max-height: 900px;
	overflow: hidden;
}
.form-wrap{
	position: relative;
	width: 100%;
	overflow: hidden;
	box-shadow: 1px 10px 30px -10px #00000080;
	animation: zooming 20s linear infinite;
}
.form-wrap:after{
	content: '';
    position: absolute;
    background: #d4d1d170;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
@keyframes zooming{
	0%{ background-size: 100% 100%;}
	50%{ background-size: 140% 140%; }
	100%{ background-size: 100% 100%; }
}
.form-container{
	padding: 50px;
    position: relative;
    z-index: 2;
}
.field {
    margin: 20px 0;
}
.field input, .field select{
	width: 100%;
    padding: 15px 0px 15px 10px;
    border: 0;
    border-radius: 2px;
    box-shadow: 0px 0 20px #00000026;
    font-size: 15px;
    color: #444;
    outline: none;
    transition: all .20s linear;
    font-family: 'K2D', sans-serif;
}
.field input:focus{
	box-shadow: 0px 0 10px #08ffe5;
}
.field .submit-button{
	background: linear-gradient(135deg, #80bcd6 0%,#0688c7 100%,#04689a 100%);
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px 0;
    border-radius: 4px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}
.toggle{
    background: #0000005e;
    color: #ffffff;
    width: 100%;
    text-align: center;
    display: block;
    font-size: 20px;
    text-shadow: 0.2px 0.2px 0.4px #000;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 0 7px;
    border-radius: 4px;
}





@media (max-width: 1200px){
    .body{
        background: linear-gradient(135deg, #cfd8dc 0%,#607d8b 100%,#b0bec5 100%);
    }
    .main-container{
        background: none;
    }
    .zoom{
        width: 50%;
    }
}


