/*
    SE VAN A MANEJAR ESTILOS GLOBALES
*/
.logo-crediagil{
    background-image: url("../img/logo_crediagil.png");
    background-repeat: no-repeat;
    width: 100vh;
}
.logo-empresa{
    background-image: url("../img/logo_happy.jpg");
    background-repeat: no-repeat;
    width: 90vh;
}

.link-style:hover{
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.well-style,pre{
    background-color:#CBCEDA;
    border-color:rgba(0,0,0,0.07);
    border-radius:3px;
    box-shadow:none;
    color:inherit
}

/* Para poner la manito del mouse */
.click {
    cursor: pointer;
}

.required-asterisk {
    color: red;
    font-weight: bold;
    min-width: 10px;
    display: inline-block;
    text-align: center;
}

/* Mantienes flex solo en form-group */
.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Solo cambio: usa flex dentro del label para alinear texto y asterisco */
.form-group label {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Espacio entre texto y asterisco */
    width: 40%;
    margin-bottom: 0;
    font-weight: 500;
    justify-content: space-between; /* Opcional: alinea el asterisco al final */
}

/* Los inputs y selects mantienen flex */
.form-group input,
.form-group select {
    flex: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group label {
        width: 100%;
        margin-bottom: 0.5rem;
        justify-content: flex-start; /* vuelve al inicio para mobile */
    }
}
.campo-invalido {
    border: 2px solid #e74c3c !important;
    background-color: #fdecea;
}

