/* Estilo general y restablecimiento de márgenes de la página de recuperacion */
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;
}

@media only screen and (min-device-width : 200px) and (max-device-width : 900px) {
    .background-container {
        padding: 10px 10px 30px 10px;
        background: url('../images/basic/fondo-container-380.png') no-repeat center center;
        width: 330px;
        max-width: 330px;
        max-height: calc(100% - 60px);
    }

	/* Título del formulario */
	.background-container h4 {
          margin-top: 10px;
          color: #003a5c;
          font-size: 11pt;
     }
     
    .recover-container {
        margin: 10px 20px 20px 35px;
        padding: 10px 0px 0px 10px;
        width: 250px;
        min-height: 150px;
        max-width: 250px;
    }
}

@media only screen and (min-width : 1024px) {
    .background-container {
        padding: 30px 60px 30px 60px;
        background: url('../images/basic/fondo-container-700.png') no-repeat center center; 
        min-height: 337px;
        max-width: 600px;    	
    }
    
    /* Título del formulario */  
    .background-container h4 {
     	margin-top: 10px;
        color: #003a5c;
        font-size: 11pt;
        margin-bottom: 40px;
    }

    .recover-container {
        margin: 20px 10px 40px 10px;
        padding: 5px 5px 5px 5px;
        float: left;
        width: 160px;
        height: 198px;
    }
}

.background-container {
    background-color: #f6f6f6;
    border-radius: 50px;
    border: #f6f6f6 solid 0.5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.recover-container {
    background-color: #ffffff;
    border-radius: 20px;
    border: #f6f6f6 solid 0.5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

 button {
	padding: 10px;
	border: none;
	border-radius: 10px;
	background-color: #ed6861;
	color: #ffffff;
	font-size: 9pt;
	cursor: pointer;
	width: 90%;
}

.message {
	color: #003a5c;
	font-size: 9pt;
	margin-bottom: 35px;
	height: 40px;
}

/* Enlaces de pie de página */
.footer-link {
    margin-top: 0;
    text-decoration: none;
    font-size: 9pt;
}

.footer-links {
  width: 7%;
  margin-left: 47%;
 
}
 
.footer-links a {
  color: #003a5c;
  text-decoration: none;
  font-size: 9pt;
}

