/* Importación de fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap');

/* Base y Reset */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

/* Estilo del body: Fondo suave y limpio */
.body-new {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e8f4fa;
}

/* Contenido principal */
.main-content-new {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 1rem;
}

/* Contenedor del formulario - Estilo "tarjeta" limpia */
.login-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 95%;
    max-width: 500px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container img {
    max-width: 200px;
    margin-bottom: 2rem;
}

/* Título con nueva tipografía */
.title-form {
    color: #042E5E;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Estilo de los inputs - con iconos integrados */
.form-group {
    position: relative;
    width: 100%;
}

.form-control-new {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    font-size: 1rem;
    color: #042E5E;
    border: 1px solid #ddd;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.form-control-new:focus {
    outline: none;
    border-color: #0072BC;
    box-shadow: 0 0 0 0.25rem rgba(0, 114, 188, 0.25);
}

.form-control-new::placeholder {
    color: #888;
}

/* Iconos dentro del input */
.icon-new {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0072BC;
    font-size: 1rem;
}

/* Botón de Ingresar - Más grande y con un toque dinámico */
.btn-primary-new {
    background-color: #0072BC;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.9rem 3rem;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgb(23, 188, 213);
    cursor: pointer;
}

.btn-primary-new:hover {
    background-color: #042E5E;
    box-shadow: 0 6px 20px rgba(4, 46, 94, 0.4);
    transform: translateY(-2px);
}

/* Enlaces */
.link-option-new {
    color: #042E5E;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    cursor: pointer;
}

.link-option-new:hover {
    color: #0072BC;
    text-decoration: underline;
}

/* Pie de página - Distribución mejorada */
.footer-new {
    background-color: #042E5E;
    color: #F0F8FF;
    padding: 2rem 1rem;
    text-align: center;
    width: 100%;
}

.link-footer-new {
    color: #F0F8FF;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-footer-new:hover {
    color: #0072BC;
}

.contact-info {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Media Queries para responsividad */
@media (min-width: 768px) {
    .login-container {
        padding: 4rem;
        max-width: 650px;
    }
    .footer-new .row {
        text-align: left;
    }
    .contact-info {
        text-align: right;
        margin-top: 0;
    }
}