

.container-form{
    width: 50% !important;
}



@media screen and (min-width: 1600px) {
    .container-form{
        width: 40% !important;
    }
}

@media screen and (min-width: 1700px) {
    .container-form{
        width: 30% !important;
    }
}



@media screen and (max-width: 768px) {
    .container-form{
        width: 70% !important;
    }
}


@media screen and (max-width: 558px) {
    .container-form{
        width: 90% !important;
        padding: 0rem;
    }
}


label{
    font-weight: 500;
    font-size: 0.9rem;
}



/* Estilos para los inputs y selects de formulario */
.form-control:focus, .form-select:focus {
    border-color: #362c6c; /* Cambia este valor al color que desees */
    box-shadow: 0 0 0 0.05rem rgba(90, 29, 104, 0.25); /* Ajusta el color del resplandor */
}

/* Restablecer los estilos de los selects después del enfoque */
.form-select {
    border-color: none;
    box-shadow: none;
}



.btn{
    background-color: #1E1A36 !important; /*color base*/
    border-color: #33267e !important;
    width: 100% !important;
}

@media screen and (min-width: 600px) {
    .btn{
        min-width: 23% !important;
        font-size: 0.9rem;
    }
}

.btn:hover{
    background-color: #443c6e !important; /*color base*/
}



/*esto sirve para dar el aspecto a un seleccionador de archivo y pueda seleccionar multiples uno abajo del otro*/
.file-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.file-item span {
    flex-grow: 1;
}


/* Selector corregido para botones específicos dentro de .file-item */
.file-item button {
    width: 3rem;
    margin-left: 10px;
    background-color: rgb(221, 221, 221);
    border: none;
    border-radius: 5rem;
}

.btn-files{
    width: 100%;
    height: 2rem;
    border: none;
    border-radius: 5rem;
    color: white;
    font-weight: bold;
    background-color: rgb(117, 87, 136) !important;
}

.btn-files:hover{
    background-color: rgb(85, 58, 101) !important;
}

.file-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
}
#files {
    display: none;
}



form{
    width: 66%;
}

@media screen and (max-width: 1190px) {
    form{
        width: 83%;
    }
}


@media screen and (max-width: 1080px) {
    form{
        width: 94%;
    }
}

@media screen and (max-width: 550px) {


    form{
        width: 100% !important;
    }
}

/*HACE UN INPUT VISUALMENTE DESACTIVADO*/
.input-disabled {
    background-color: #e9ecef; /* Color de fondo similar al deshabilitado */
    opacity: 1; /* Asegura que el texto sea visible */
    pointer-events: none; /* Evita que el usuario pueda interactuar con el campo */
    color: #6c757d; /* Color de texto gris */
}


.title{
    font-size: 1.5rem;
    font-weight: bold;
}


.description{
    font-size: 0.9rem;
}

/*imagen principal del form*/

.img-main{
    min-width: 20rem;
    max-width: 22rem;
}

/*mensaje de error en los inputs incompletos*/

.error{
    color: rgb(220, 6, 6);
    font-size: 0.9rem;
    font-weight: 500;
}





