*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
}
body{
	font-family: Tahoma !important;
	background-color: rgb(235, 227, 175);
}
/* Diseño o calor de cuerpo */
.cabs{
	background-color: rgba(45, 48, 63, 1.0);
	float: 	left;
	width: 	100%;
}
.cabs img{
	padding: 10px;
	margin-top: 0.5%;
	margin-left: 47.5%;
	width: 150px;
	border-radius: 3px;
}
.logincontenedor{
	float: left;
	display: flex;
	justify-self: center;
	align-items: center;
	margin: 0% 0% 0% 42.5%;
	height: 85vh;
}
.logincontenedor1{
	background-color: rgba(255, 255, 255, 1.0);
	padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}
.logincontenedor1 h1{
	text-align: center;
	margin-bottom: 20px;
	font-size: 28px;
	color: #333;
}
.logincontenedor1 .grupoinput{
	margin-bottom: 20px;
}
.logincontenedor1 .grupoinput label{
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555;
}
.logincontenedor1 .grupoinput input{
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
}
.logincontenedor1 .grupoinput input:focus{
	outline: none;
	padding: 10px;
	border-color: #007bff;
}
.logincontenedor1 .grupoinput .icono{
	position: relative;
}
.logincontenedor1 .grupoinput .icono input{
	padding-left: 40px;
}
.logincontenedor1 .grupoinput .icono i{
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #444;
}
.logincontenedor1 .btnlogin{
	width: 100%;
	padding: 12px;
	background-color: #007bff;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	margin-bottom: 20px;
}
.logincontenedor1 .btnlogin:hover{
	background-color: #0056b3;
}
.logincontenedor1 .olvidarcontrasena{
	display: block;
	text-align: right;
	font-size: 14px;
	color: #007bff;
	text-decoration: none;
}
.logincontenedor1 .olvidarcontrasena:hover{
 text-decoration: underline;
}
.logincontenedor1 .registro{
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: #555;
}
.logincontenedor1 .registro a{
	color: #007bff;
	text-decoration: none;
}
.logincontenedor1 .registro a:hover{
	text-decoration: underline;
}