body{
	margin:0;
	height:100vh;
	font-family: sans-serif;
	background-image:linear-gradient(to top, #5B3C88, #000);
	background-repeat: no-repeat;
    background-size: auto;
}
*{
    box-sizing: border-box;
}
.container-login{
    height: 100%;
    display: flex;
    align-items: center;
	justify-content: center;
}
.login-form{
	width:auto;
	height:auto;
	padding:5px;
	background-color:#fff;
    padding:10px;
    border-radius:10px;
}
.login-form div{
    padding:5px;
}
.input{
    padding:5px;
}
button{
	background-color: #000;
	color:#fff;
	padding:8px;
	width:100%;
	border:none;
	cursor: pointer;
	border-radius:5px;
	
}


