body{
	margin: 0;
	padding: 0;
	width: 100%; 
	height: 100%;
	font-family: "montserrat", sans-serif;
    background-image: linear-gradient(120deg,#ffffff 60%,#08103b 100%);
}

.login-box{
	width: 300px;
	height: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #061324;
	font-size: 20px;

}
.login-box h1{
	font-size: 1.5em;
	border-bottom: 6px solid;
	margin-bottom: 50px;
	padding: 13px 0;
}
.textbox {
	width: 100%;
	overflow: hidden;
	font-size: 1.2em;
	padding: 8px 0;
	margin: 8px 0;
	border-bottom: 1px solid #061324;
}
.textbox i{
	width: 26px;
	float: left;
	text-align: center;
}

.textbox input{
	border: none;
	outline: none;
	background:none;
    color: #000;
    font-size: 0.7em;
    width: 80%;
    float: left;
    margin: 0 10px;
}

.seleccion{
	border: none;
	outline: none;
	background: none;
	font-size: 0.7em;
	float: right; 
	width: 100%;
}

.btn{
	width: 100%;
	padding:5px;
	font-size: 1.2em;
	text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    background: #061324;
    color: #fff;
    border-radius: 44px;
    cursor: pointer;
    transition: 0.8s;
}
.btn:hover{
	transform: scale(0.80);
}
@media screen and (max-width: 1024px){
	body{
		background-image: linear-gradient(125deg,#32dbc6,#061324, #32dbc6,#073133 );
		background-size: 400%;
		animation: bganimation 15s infinite;

	    }


.login-box{
	width: 90%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #061324;
	background:#fff;
	padding: 30px 30px;
	overflow: scroll;
	
}
.login-box h1{
 font-size: 2em;
}

.textbox  input{
	font-size: 0.8em;
	padding: 0px 10px;
	margin: 0px 10px;
}
.textbox i{
	width: 15px;
	float: left;
	text-align: center;
	font-size: 1.3em;
}
.seleccion{
	font-size: 0.8em;
}
@keyframes bganimation{
	0%{
		background-position: 0% 50%;
	}
	50%{
		background-position: 100% 50%;
	}
	100%{
		background-position: 0% 50%;
	}
  }

}