* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

body {
	background-image: url(../img/login/backgroundvise.png);
	background-repeat: no-repeat;
	background-size: 90% 100%;
}

h3 {
	margin-bottom: 10px;
	text-align: center;
}

.wrapper-login {
	background-image:
		url('https://eflow.vise.com.mx/images/cintillas/casillas_1602182302_FONDO.png');
	float: right;
	min-height: 100vh;
	display: grid;
	justify-items: center;
	width: 350px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
	padding-bottom: 10px;
	padding-left:5px;
	padding-right:5px;
}

.wrapper-container {
	display: grid;
	justify-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

#divRegistro {
	width: 100%;	
}

.logo {
	background-image: url("../img/login/logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 150px; /* ajusta el tamaño según tus necesidades */
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slogan {
	background-image: url("../img/login/SLOGAN1.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 200px;
	height: 50px;
}

.form hr {
	border: 1px solid #808080;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.form {
	border-left: 30px;
	border-right: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.inputs {
	display: grid;
	justify-items: center;
}

.inputs div {
	width: 100%;
}

.inputs div input {
	width: 100%;
}

.box {
	outline: none;
	border-color: #EFCA1E;
	border-width: 0px 0px 0px 5px;
	border-style: solid;
	padding: 15px 8px;
	margin-bottom: 20px;
	background-color: #F9f9f9;
}

.inputs a {
	color: #000;
	text-decoration: none;
	font-size: 15px;
}

.btn-container {
	display: grid;
}

.submit {
	background-color: #EFCA1E;
	padding: 15px;
	border: 0;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	border-radius: 25px;
	margin-bottom: 5px;
}

.registro {
	background-color: #000000;
	padding: 15px;
	border: 0;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	border-radius: 25px;
}

.recuperar {
	background-color: #D68A27;
	padding: 15px;
	border: 0;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	border-radius: 25px;
}

.login-msg {
	display: inline-block;
    color: #ffffff; /* Color del texto del mensaje */
    border-radius: 5px; /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra para resaltar el mensaje */
    text-align: center; /* Alineación del texto al centro */
    max-height: 80px;
    
}

.warning-msg {
    background-color: #ffc107; /* Color de fondo del mensaje */
}

.success-msg {
    background-color: #28a745; /* Color de fondo del mensaje */
}

.danger-msg {
    background-color: #dc3545; /* Color de fondo del mensaje */
}

@media only screen and (max-width: 600px) {
	
	.wrapper-login {
		width: 100vw !important;
	}
	.info {
		display: none;
	}
	.form {
		width: 100%;
		padding: 30px;
	}
}