* {
	margin: 0px;
	padding: 0px;
	font-family: Tahoma;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.contenedor {
	width: 350px;
	height: 250px;
	border-radius: 5px;
	box-shadow: 0px 10px 30px #888888;
	position: relative;
}

.notice {
	background: #023F90;
	color: white;
	line-height: 50px;
	text-align: center;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

img {
	position: absolute;
	left: 15%;
	top: -45%;
}


form {
	width: 80%;
	height: 80;
	margin: auto;
	font-size: 0;
	margin-top: 20px;
}

input {
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	height: 40px;
	padding: 2.5px 8px;
    border: 1px solid #ccc;
	font-size: 15px;
} 

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

input:focus { 
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}

.usuario {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

.password {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

button {
	background: #023F90;
	color: white;
	width: 100%;
	margin-top: 10px;
	box-sizing: border-box;
	height: 40px;
	border-width: 0.01px;
	border-radius: 5px;
	font-size: 16px;
}

#alerta {
	width: 100%;
	margin-top: 10px;
	box-sizing: border-box;
	height: 40px;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	color: red;
}

::-webkit-input-placeholder {
   letter-spacing: 2px;
}

:-moz-placeholder { /* Firefox 18- */
   letter-spacing: 2px;  
}

::-moz-placeholder {  /* Firefox 19+ */
   letter-spacing: 2px;  
}

:-ms-input-placeholder {  
   letter-spacing: 2px;  
}
