/* 
 * login.css - Estilos personalizados para la página de login de Kontrii
 */

 :root {
    --primaryColor: #1cd68c;
    --secondaryColor: #4e73df;
    --bgColor: #f8f5f1;
    --textColor: #333;
    --darkBlue: #14213D;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bgColor);
    color: var(--textColor);
}

/* Estilos de encabezado */
.container-header--login {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
    background: white;
}

.logo-header--login {
    width: 112px;
}

/* Estilos de texto y etiquetas */
.label-text {
    color: var(--secondaryColor);
    font-weight: 700;
}

.header_title_style_2 {
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 3.25rem;
    font-family: Google Sans, Helvetica Neue, sans-serif;
    letter-spacing: normal;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: capitalize;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#7f7dd1),
        color-stop(100%, #548dd9),
        to(#548dd9)
    );
    background: -webkit-linear-gradient(left, #7f7dd1, #548dd9 100%, #548dd9 0);
    background: linear-gradient(90deg, #7f7dd1, #548dd9 100%, #548dd9 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Estilos del contenedor del formulario */
.container-login-input {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.container-login-input h1 {
    font-size: 2.4rem;
}

.container-login-input input, 
.container-login-input label {
    font-size: 1.8rem;
}

/* Estilos de imagen */
.container-image-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-image-login img {
    max-height: 400px;
    border-radius: 3px;
    object-fit: cover;
}

/* Estilos del botón de envío */
.submit .container-boton--login {
    width: 100%;
    background-color: var(--secondaryColor);
    border: none;
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: white;
    height: 50px;
}

.submit .container-boton--login:hover {
    background-color: var(--primaryColor);
}

/* Estilos del botón de contraseña */
#toggle-password:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    border: none;
}

#toggle-password:hover,
#toggle-password:active {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Estilos para olvidar contraseña */
.forgot-password {
    height: 5rem;
    margin-top: 1rem;
    text-align: center;
}

.forgot-password a {
    height: 80%;
    width: auto;
    text-align: center;
    font-size: 1.5rem;
    padding: 7px;
    color: var(--secondaryColor);
    text-decoration: none;
    border: 1px solid var(--secondaryColor) !important;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.forgot-password a:hover {
    background-color: var(--secondaryColor);
    color: white;
}

/* Estilos de tarjeta y sombras */
.card {
    border-radius: 1rem;
    overflow: hidden;
    border: none;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Estilos de formulario */
.form-control {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

/* Estilos para mensajes flash */
.message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Estilos para subtítulo de login */
.login-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive media queries */
@media screen and (max-width: 1200px) and (min-width: 720px) {
    .container-title--login h1 {
        font-size: 3rem;
    }
    .form-group label {
        font-size: 2rem;
    }
    .container-image-login img {
        width: 100%;
    }
    .form-group input,
    .submit .container-boton--login {
        height: 50px;
        font-size: 3rem;
    }
    .container-header--login {
        height: 10vh;
    }
    .container-header--login img {
        width: 80px;
    }
}

@media (max-width: 700px) {
    .container-login-input h1 label {
        font-size: 2.5rem;
    }
    .container-header--login img {
        width: 100px;
    }
    .container-image-login {
        display: none;
    }
}

@media only screen and (min-width: 600px) and (min-height: 1000px) {
    .container-login-input {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .container-title--login h1 {
        font-size: 4rem;
    }
    .login-input.p-5 {
        height: 100%;
    }
    .form-group input {
        height: 100px;
        margin-bottom: 5rem;
    }
    .form-group label {
        font-size: 3rem;
    }
    .submit .container-boton--login {
        height: 100px;
        font-size: 3rem;
    }
    .text-center a {
        font-size: 3rem;
    }
}
:root {
    --primaryColor: #1cd68c;
    --secondaryColor: #4e73df;
    --bgColor: #f8f5f1;
    --textColor: #333;
}

body {
    background-color: var(--bgColor);
    font-family: 'Poppins', sans-serif;
    color: var(--textColor);
}

/* Estilos de encabezado */
.container-header--login {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
    background: white;
}

.logo-header--login {
    width: 112px;
}

/* Estilos de texto y etiquetas */
.label-text {
    color: var(--secondaryColor);
    font-weight: 700;
}

.header_title_style_2 {
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 3.25rem;
    font-family: Google Sans, Helvetica Neue, sans-serif;
    letter-spacing: normal;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: capitalize;
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(#7f7dd1),
            color-stop(100%, #548dd9),
            to(#548dd9));
    background: -webkit-linear-gradient(left, #7f7dd1, #548dd9 100%, #548dd9 0);
    background: linear-gradient(90deg, #7f7dd1, #548dd9 100%, #548dd9 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Estilos del contenedor del formulario */
.container-login-input {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.container-login-input h1 {
    font-size: 2.4rem;
}

.container-login-input input,
.container-login-input label {
    font-size: 1.8rem;
}

/* Estilos de imagen */
.container-image-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-image-login img {
    max-height: 400px;
    border-radius: 3px;
    object-fit: cover;
}

/* Estilos del botón de envío */
.submit .container-boton--login {
    width: 100%;
    background-color: var(--secondaryColor);
    border: none;
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.submit .container-boton--login:hover {
    background-color: var(--primaryColor);
}

/* Estilos del botón de contraseña */
#toggle-password:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    border: none;
}

#toggle-password:hover,
#toggle-password:active {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Estilos para olvidar contraseña */
.forgot-password {
    height: 5rem;
    margin-top: 1rem;
    text-align: center;
}

.forgot-password a {
    height: 80%;
    width: auto;
    text-align: center;
    font-size: 1.5rem;
    padding: 7px;
    color: var(--secondaryColor);
    text-decoration: none;
    border: 1px solid var(--secondaryColor) !important;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.forgot-password a:hover {
    background-color: var(--secondaryColor);
    color: white;
}

/* Estilos de tarjeta y sombras */
.card {
    border-radius: 1rem;
    overflow: hidden;
    border: none;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Estilos de formulario */
.form-control {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

/* Estilos para subtítulo de login */
.login-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive media queries */
@media screen and (max-width: 1200px) and (min-width: 720px) {
    .container-title--login h1 {
        font-size: 3rem;
    }

    .form-group label {
        font-size: 2rem;
    }

    .container-image-login img {
        width: 100%;
    }

    .form-group input,
    .submit .container-boton--login {
        height: 50px;
        font-size: 3rem;
        padding: 10px;
        text-align: center;
    }

    .container-header--login {
        height: 10vh;
    }

    .container-header--login img {
        width: 80px;
    }
}

@media (max-width: 700px) {
    .container-login-input h1 label {
        font-size: 2.5rem;
    }

    .container-header--login img {
        width: 100px;
    }

    .container-image-login {
        display: none;
    }
}

@media only screen and (min-width: 600px) and (min-height: 1000px) {
    .container-login-input {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .container-title--login h1 {
        font-size: 4rem;
    }

    .login-input.p-5 {
        height: 100%;
    }

    .form-group input {
        height: 100px;
        margin-bottom: 5rem;
    }

    .form-group label {
        font-size: 3rem;
    }

    .submit .container-boton--login {
        height: 100px;
        font-size: 3rem;
    }

    .text-center a {
        font-size: 3rem;
    }
}