/* index.css */

@font-face {
    font-family: 'Roboto-Black';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #f0f5ff;
}

.container {
    text-align: center;
    margin-top: -200px; /* Asegura que el contenido comience debajo del menú */
}

.bienvenido {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Roboto Black', sans-serif; 
}

label {
    font-size: 16px;
}

.input-field {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.input-container {
    margin-bottom: 10px;
    text-align: left;
}

.separator {
    height: 10px;
}

.button-container {
    text-align: center;
    margin-top: 20px; /* Espacio desde la separación hasta el botón */
}

.rounded-button {
    background-color: #2680EB;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.rounded-button:hover {
    background-color: #1d66d6; /* Cambio de color al pasar el cursor por encima */
}

.recovery-link {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
}

.recovery-link a {
    text-decoration: none;
    color: #2680EB;
}

.recovery-link a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #70A8EB;
    color: white;
    text-align: center;
    width: 100%; /* Ancho del 100% para abarcar toda la pantalla */
    position: absolute;
    bottom: 0;
}

.footer-content {
    padding: 10px;
}

/* Media query para dispositivos más pequeños, como tabletas y teléfonos */
@media (max-width: 768px) {
    .bienvenido {
        font-size: 20px;
    }

    label {
        font-size: 14px;
    }

    .input-field {
        font-size: 14px;
        max-width: 100%;
    }
}
