* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font-family: arial, Helvetica, sans-serif;
	background: linear-gradient(27deg, #34495e 50%, #2c3e50 50%); 
}

.login {
	width: 400px;
	min-width: 300px;
	border-radius: 10px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border: solid 1px #2980b9;
	margin: 10px;
}

img{
	width: 150px;
	height: auto;
	display: block;
	margin: 20px auto;
}

.bienvenida {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
}

.login input {
	display: block;
	margin: auto;
	height: 40px;
	width: 75%;
	padding-left: 10px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 2px;
	font-family: Verdana, Genove, Tahoma, sans-serif;
	background-color: transparent;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
	font-size: 1rem;
	outline: none;	
}

.login input[type="password"]{
	margin-top: 20px;
}

::placeholder {
	font-size: 1rem;
	color: rgba(255, 255, 255, .596);
}

.login input:hover{
	transition: .5s;
	border: 1px solid #2980b6;
	color: #2498db;
}

.login button {
	display: block;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 30px;
	height: 40px;
	width: 78%;
	background: transparent;
	color: #b9c4c6;
	border-radius: 10px;
	cursor: pointer;
	outline: none;
	border: 1px solid #2980b9;
	transition: all .5s ease;
}

.login button:hover{
	color: #d5dbdd;
	border: 2px solid #3498db;
	background: linear-gradient(#34495e, #2c3e50);
}










