@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
/* Estilos específicos para la página de login */

/* Reset específico para login - máxima especificidad */
html body .fondoColor {
    position: relative;
    background: url('/imagenesPagina/optimizadas/Header.webp') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Capa de superposición con difuminado */
html body .fondoColor .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Estilos específicos para la tarjeta de login */
html body .fondoColor .card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    z-index: 2;
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(30, 43, 57, 0.2);
}

/* Título específico para login */
html body .fondoColor .card h4.titlee {
    font-weight: bold;
    font-size: 35px;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1E2B39;
}

/* Estilos específicos para los grupos de input */
html body .fondoColor .card .input-group-text {
    color: white;
    border-radius: 12px;
    background: #1E2B39;
    border: 1px solid #1E2B39;
}

/* Cambiar el color de los íconos */
html body .fondoColor .card .icon-color {
    background: #1E2B39;
    color: white;
}

/* Estilos específicos para los campos de formulario */
html body .fondoColor .card .form-control {
    border-radius: 30px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

html body .fondoColor .card .form-control:focus {
    border-color: #1E2B39;
    box-shadow: 0 0 0 0.2rem rgba(30, 43, 57, 0.25);
}

/* Botón específico para login */
html body .fondoColor .card .btn-primary {
    background-color: #1E2B39;
    border-color: #1E2B39;
    border-radius: 30px;
    height: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
}

html body .fondoColor .card .btn-primary:hover {
    background-color: #e07c00;
    border-color: #e07c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 124, 0, 0.3);
}

/* Enlaces específicos para login */
html body .fondoColor .card .enlace-registro {
    color: #1E2B39;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
}

html body .fondoColor .card .enlace-registro::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #e07c00;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -2px;
}

html body .fondoColor .card .enlace-registro:hover::after {
    width: 100%;
}

html body .fondoColor .card .enlace-registro:hover {
    color: #e07c00;
    text-decoration: none;
}

/* Estilos para las etiquetas */
html body .fondoColor .card .form-label {
    font-weight: 600;
    color: #1E2B39;
    margin-bottom: 0.5rem;
}

/* Estilos para mensajes de éxito */
html body .fondoColor .card .text-success {
    color: #28a745;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

body{
    font-family: 'Kantumruy Pro', sans-serif;
}
