body{
	margin: 0;
	background-image: url(https://images.unsplash.com/photo-1682778964821-76d9840a19e1?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1170);
    background-size: cover;
}

.contenido{
	margin: 0;
    width: 100%;
    height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login{
	width: 320px;
    padding: 20px;
    margin: 0 auto;
    height: 350px;
    border-radius: 10px;
    background: #d8de8752;
    box-shadow: 5px 5px 60px;
}

.login p{
	font-family: sans-serif;
    font-size: 22px;
    font-weight: bold;
	text-align: center;
}

.input{
	display: flex;
	border-radius: 15px;
    border: solid #8a3434 3px;
	width: 100%;
	background: white;
}

.icon{
	width: 45px !important;
    padding-top:10px;
    background: #9a4848;
	color: white;
	border:none;
    border-radius: 10px 0px 0px 10px;
}


.login input{
	width: 80%;
	height: 45px;
    padding: 15px;
    background:none;
	border:none; 
	outline:none;
}

.login button{
	font-size: 17px;
	width: 120px;
    height: 40px;
    border-radius: 10px;
    background: #9a4848;
    color: #FFFFFF;
    font-weight: bold;
}

.login button img{
	margin-top: 6px;
	margin-right:10px;
}

.login button:hover{
	cursor: pointer;
	font-weight: bolder;
	transform: scale(1.15);
	border: solid 2.5px white;
	box-shadow: 5px 5px 20px gray;
}