/* Estilo general y restablecimiento de márgenes de la página de login */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
}


/* Contenedor del formulario de login */

@media only screen and (min-width : 320px) and (max-width : 1023px) {
    .login-container {
        padding: 10px 10px 10px 10px;
        background: url('../images/basic/fondo-container-380.png') no-repeat center center; 
	    max-width: 40%;
    }

     .input-group {
   		display: block !important;
    }

    /* Campos de entrada */
    .input-group input {
        width: 50%;
    }

    /* Botón de submit */
    button {
        width: 50%;
    }

	.footer-links a {
        margin-top: 0;
    }
    
    .footer-links a {
        padding: 0;
    }
}

@media only screen and (min-width : 1024px) {
    
	.login-container {
	    padding: 30px 60px 30px 60px;
	    background: url('../images/basic/fondo-container-700.png') no-repeat center center;
	    max-width: 40%;
	}
	
    .input-group {
   		display: block !important;
    }

    /* Campos de entrada */
    .input-group input {
        width: 50%;
    }

    /* Botón de submit */
    button {
        width: 50%;
    }

	/* Enlaces de pie de página */
	.footer-links {
	    margin-top: 20px;
	}
	
    .footer-links a {
        padding: 1%;
    }
}

.login-container {
     background-color: #f6f6f6;
     border-radius: 50px;
     border-color: #f6f6f6;
     border-style: solid;
     border-width: 0.5px;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
     text-align: center;
     position: relative; 
     width: 680px;
     height: 400px;
     max-height: 400px;
     max-width: 680px;
     padding: 30px 60px 30px 60px;
}

/* Título del formulario */
.login-container h1 {
    margin-top:10px;
    margin-bottom: 50px;
    color: #003a5c;
    font-size: 2em;
    font-weight: bold;
}

/* Mensaje de error */
.error-message {
    color: #ed6861;
    margin-bottom: 10px;
    font-size: 9pt;
}

/* Grupo de entrada */
.input-group {
    margin-bottom: 15px;
}

/* Campos de entrada */
.input-group input {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    background-color: #ffffff;
    color:#003a5c;
}

.input-group input:focus {
    border-color: #003a5c;
    outline: 0 none;
}

/* Botón de submit */
button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #003a5c;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

/* Cambio de color del botón en hover */
button:hover {
    background-color: #003366;
}

/* Enlace de olvidaste tu acceso */
.forgot-link {
    display: block;
    margin-top: 20px;
    color: #003a5c;
    text-decoration: none;
    font-size: 9pt;
}

.footer-links a {
    color: #003a5c;
    text-decoration: none;
    font-size: 9pt;
}

.texto-login {
	font-size: 16px;
	margin-bottom: 20px;
}

.welcome-div {
	color:white;
	margin-top: 3%; 
	background: #003a5c;
	border: thin solid black;
	height: 50%;
	width: 50%;
	text-align: center;
	border-color: #08296B;
	font-size: 80%;
	border-radius: 10px;
	padding: 10px 10px 10px 10px;
	display: block;
	float: left;
}

.welcome-div-left {
	color:white;
	margin-top: 3%; 
	margin-left: 1%; 
	background: #003a5c;
	border: thin solid black;
	width: 40%;
	/*height: 50%;*/
	text-align: center;
	border-color: #08296B;
	font-size: 80%;
	border-radius: 10px;
	padding: 10px 10px 0 10px;
	display: block;
	float: left;
}

.welcome-div-center {
	color:white;
	margin-top: 3%; 
	margin-left: 1%; 
	background: #003a5c;
	border: thin solid black;
	width: 40%;
	/*height: 50%;*/
	text-align: center;
	border-color: #08296B;
	font-size: 80%;
	border-radius: 10px;
	padding: 10px 0 0 0;
	display: block;
	float: left;
}

.welcome-div-right {
	color:white;
	margin-top: 3%; 
	margin-left: 1%; 
	background: #003a5c;
	border: thin solid black;
	width: 40%;
	/*height: 50%;*/
	text-align: center;
	border-color: #08296B;
	font-size: 80%;
	border-radius: 10px;
	padding: 10px 10px 0 10px;
	display: block;
	float: left;
}

.center {
	display: flex;
  	justify-content: space-around;
  	padding: 10px 10px;
}

.access-link {
	color:#ED7D31; 
	font-weight: bold;
	cursor:pointer;
}
