/* 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;
    margin: auto;
}

/* Contenedor del formulario de login */

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .background-container {
        padding: 0px 10px 30px 10px;
        background: url('../imagenes/fondo-container-380.png') no-repeat center center;
        width: 330px;
        max-width: 330px;
    }

    .recover-container {
        width: 285px;
        height: 200px;
        max-height: 200px;
        min-height: 200px;
        max-width: 285px;

    }

}

@media only screen and (min-width : 901px) {

    .background-container {
        padding: 30px 60px 30px 60px;
        background: url('../imagenes/fondo-container-700.png') no-repeat center center;
        width: 600px;
        height: 337px;
        max-height: 337px;
        min-height: 337px;
        max-width: 600px;
    }

    .recover-container {
        width: 165px;
        height: 250px;
        max-height: 250px;
        min-height: 250px;
        max-width: 165px;

    }

}

.background-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;
}

.recover-container {
    float: left;
    margin-left: 10px;
    margin-top: 30px;
    margin-bottom: 25px;
    padding: 10px 10px 10px 10px;
    background-color: #ffffff;
    border-radius: 20px;
    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;    
}

/* Título del formulario */
.background-container h4 {
    margin-top: 10px;
    margin-bottom: 40px;
    color: #003a5c;
    font-size: 11pt;
}

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

/* Botón de submit */
button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #ed6861;
    color: #ffffff;
    font-size: 9pt;
    cursor: pointer;
    width: 90%;
}

/* Enlaces de pie de página */
.footer-links {
    margin-top: 0px;
}

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