@charset "utf-8";
@import url("stylemenu.css");

body{
    background-image:url("img/fondoareacliente.jpg");
    background-size: cover;
}

.contenedor {
	font-family: roboto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 380px;
    height: 400px;
    margin: auto;
    position: relative;
    top: 100px;
    border-radius: 45px;
}

.login {
	width:100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: none;

}

.contenedor h2 {
	margin-top: 40px;
	color: #FFFFFF;
	font-size: 30px;
	
}

.login input{
    width: 100%;
    margin-top: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: none;
}
.login button{
	width: 100%;
    margin-top: 15px;
    border: none;
    font-family: roboto;
	background-color: olivedrab;
	color: white;
	cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
}
.login button:hover {
    -webkit-box-shadow: 0 0 5px white;
    box-shadow: 0 0 5px white;
}

@media (max-width:600px){
   .contenedor h2{
	margin-top: -70px;
	
	
} 
    
}