/* estilos_admin.css */

/* General */

html, body {
    height: 100%; /* Asegura que el body ocupe toda la altura de la pantalla */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: #f9f9f9;
}

/* Contenedor principal */
.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Contenido principal */
main {
    flex: 1; 
    padding: 20px;
    background-color: #f9f9f9;
}

.login-contenedor {
    /*display: flex;
    flex-direction: column;*/
    height: 100vh;
}

/* Pie de página */
.login-footer {
    /*background-color: #01696d;*/
    color: #01696d;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
}

/* Encabezado
.login-header {
    background-color: #01696d;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/* Estilos para la imagen del logo */
.logo {
    width: 300px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción */
    display: block; /* Hace que la imagen sea un bloque */
    margin: 0 auto; /* Centra la imagen horizontalmente */
    transition: transform 0.3s ease; /* Agrega una animación al hacer hover */
}

/* Efecto al pasar el mouse sobre el logo */
.logo:hover {
    transform: scale(1.1); /* Escala la imagen un 10% */
}

/* Estilos adicionales para el header */
.login-header {
    /* text-align: center; /* Centra el contenido del header 
    padding: 20px;
    background-color: #f9f9f9; /* Color de fondo 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); Sombra suave */
    background-color: #01696d;
    color: white;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-header h1 {

    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
}


/* Estilos de los inputs */
form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

form label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
    margin-left: -8px;
    font-family: 'Montserrat', sans-serif;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    margin-left: -10px;
    font-family: 'Montserrat', sans-serif;
}

/* Foco en los inputs */
form input:focus,
form textarea:focus {
    outline: none;
    border-color: #007bff;
    background-color: #e9f7ff;
}

/* Estilo para inputs de texto, número y textarea */
form input[type="text"],
form input[type="number"],
form textarea {
    height: 20px;
}

/* Estilo para textarea */
form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Estilo para el input file (imagen) */
form input[type="file"] {
    padding: 0.5rem;
    background-color: #f1f1f1;
}

/* Imagen previa
form img {
    max-width: 150px;
    border-radius: 8px;
    margin-top: 1rem;
} */

/* Botón de envío */
form button {
    /* background-color: #007bff; */
    background-color: #01696d; 
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    /* font-weight: bold; */
    transition: background-color 0.3s ease;
    margin: 10px 270px 0px;
    width: 300px;
    font-family: 'Montserrat', sans-serif;
}

form button:hover {
    background-color: #003817;
}

.mb-3 h2 {

    text-align: center;
    color: #01696d;
    margin-left: -8px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 5px;

}

.olvido {

    text-align: right;
}

.olvido a {

    text-decoration: none;
    color: #01696d;
}

.mb-3 h1 {

    text-align: center;
    color: #01696d;
}

#mensaje-error {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: none;
    background: #f13c3c;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

/* Responsividad */
@media (max-width: 768px) {
    form {
        padding: 1rem;
    }

}

