:root {
    --font-family: 'Public Sans', sans-serif;
    --color-primary: #4B465C;
    --color-secondary : #2b91ff;
}

.containerFormLogin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    height: auto;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding-left: 0px !important;
    padding-right: 0px !important;

}
#content_form_login {
  
    border-radius: 16px;
  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);


}

.left-section {
    background-color: #f0f0f0;
    position: relative;
}

.image-container {
    height: 100%;
    width: 100%;
    background-color: #d9d9d9;
}

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


.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.login-box {
    text-align: center;
    width: 80%;
}

.logo {
    width: 80%;
    margin-bottom: 20px;
}
.help-block{
    text-align: left;
}
.titleLogin {
    font-family:  var(--font-family);
    font-weight: 500; /* Medium */
    font-size: 26px;
    color:  var(--color-primary);
}

.subTitleLogin{
    font-family:  var(--font-family); 
    font-weight: 400; /* Regular */
    font-size: 15px;
    color:  var(--color-primary);
}

#formLogin {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 12px;
}

.btnPassword {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}
.form-control-position {
    position: absolute;
  
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
}
.redirectButtom {
    text-align: right;
    font-family: var(--font-family);
    font-weight: 400; /* Regular */
    font-size: 13px;
    color: var(--color-secondary);
    text-decoration: underline;
}

.redirectButtom:hover {
    color: var(--color-secondary) !important;
    text-decoration: underline;
}

.redirectButtom:hover {
    text-decoration: underline;
}

.btnSubmitLogin {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400; /* Regular */
    color: #FFFFFF;
    background-color: #7367F0;
    padding: 10px 20px; /* Ajusta el tamaño del botón */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Media Queries para la responsividad */
@media (max-width: 1200px) {
    .container {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        height: auto;
    }
    .left-section {
        display: none; /* Ocultar la imagen en pantallas pequeñas */
    }
    .right-section {
        padding: 40px 20px;
        ;
    }

    .login-box {
        width: 100%;
    }

    /* .logo {
        width: 80px;
    } */

    .titleLogin {
        font-size: 20px;
    }

    .subTitleLogin {
        font-size: 14px;
    }

    .btnPassword {
        font-size: 14px;
        padding: 8px;
    }

    .btnSubmitLogin {
        padding: 10px;
        font-size: 14px;
    }

    .image-container img {
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    body {
        justify-content: flex-start;
    }

    .container {
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 0;
        box-shadow: none;
    }

    .left-section {
        display: none; /* Ocultar la imagen en pantallas pequeñas */
    }

    .right-section {
        padding: 20px;
        text-align: center;
    }

    .login-box {
        width: 100%;
    }

    /* .logo {
        width: 70px;
    } */

    .titleLogin {
        font-size: 18px;
    }

    .subTitleLogin {
        font-size: 12px;
    }

    .btnPassword {
        font-size: 12px;
    }

    .btnSubmitLogin {
        padding: 8px;
        font-size: 12px;
    }
}
.labelRole {
    font-family:  var(--font-family);
    font-weight: 400; /* Regular */
    font-size: 13px;
    color: var(--color-primary);
}
.titleProfile{
    text-align: center;
}


/* Estilos de los selectores */
#system_section .input-group {
    margin-bottom: 15px;
}

#system_section select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
}


/* Estilo de los botones */
.backButton:hover {
    background-color: #7367F0 !important; 
    color: #FFFFFF !important;
}
.fg-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.fg-actions .btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.fg-actions .btn-outline-primary {
    border: 1px solid #7367F0;
    color: #7367F0;
    background: transparent;
}

.fg-actions .btn-primary {
    background-color: #7367F0;
    color: white;
    border: none;
}

.fg-actions .btn-primary:hover,
.fg-actions .btn-outline-primary:hover {
    opacity: 0.9;
}

/* Mensajes */
.message-login {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}
