body{
	margin:0;
    font-family: Gotham-Book;
}

* {
    outline: none;
}

.form-group {
    margin: 0 20px 15px 20px;
}

.form-control:focus {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#009efb), to(#009efb)), -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(#d9d9d9));
    background-image: -webkit-linear-gradient(#009efb, #009efb), -webkit-linear-gradient(#d9d9d9, #d9d9d9);
    background-image: -o-linear-gradient(#009efb, #009efb), -o-linear-gradient(#d9d9d9, #d9d9d9);
    background-image: linear-gradient(#009efb, #009efb), linear-gradient(#d9d9d9, #d9d9d9);
    border: 0 none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
	background-size: 100% 2px, 100% 1px;
    outline: 0 none;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.form-control {
    border: 0;
    width: calc(100% - 24px);
    font-size: 18px;
    padding: 12px;
	border-bottom: 1px solid #9E9E9E;
    font-family: Gotham-Book;
    background-color: transparent;
    background-position: center bottom, center calc(100% - 1px);
    background-repeat: no-repeat;
    background-size: 0 2px, 100% 1px;
    -webkit-transition: background 0s ease-out 0s;
    -o-transition: background 0s ease-out 0s;
    transition: background 0s ease-out 0s;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

select.form-control{
	width: 100%;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: flex-end;
}

.logo_W {
	min-width: 370px;
    width: 50%;
}

.container>.img {
    background-image: url(../assets/img/h4.jpg?v1);
    background-size: 100% 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-material {
    background: white;
    padding: 10px;
	width: 350px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border-color: rgba(120, 130, 140, 0.13);
}

.head {
    text-align: center;
    padding: 15px;
    font-size: 25px;
}

.head>img {
    width: 50px;
    height: 50px;
}

.btn {
    background: #00BCD4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 20px;
    color: white;
    transition: all 0.5s;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover{
	background:#0090a2;
}

.form-group>div>label {
    display: none;
    font-size: 14px;
    color: #03A9F4;
}

.form-group>div{
	height:16px;
}

div#ftp {
    text-align: center;
}

@media (max-width: 800px){
	.form-material {
		width: 310px;
	}
}
@media (max-width: 415px){
	.container>.img {
		display: none;
	}
	.form-material {
		width: 90%;
		border-radius: 5px;
		border-top: 7px solid #00bcd4;
	}
	.container {
		background-color: #00bcd4;
		background-image: url(../assets/img/h4.jpg?v1);
		background-size: 100% 100%;
		justify-content: center;
		align-items: center;
	}
}