/* Overall form layout */
body{
    height:100vh;
    background-color: #2a235c !important;
}

#backend {
    font-size: 14px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#backend h2{
    color: #fff;
    border-radius: 5px;
    width: 50%;
    margin: 10px auto;
}

#backend h2 p{
    color: yellow;
    margin: 0;
}

#backend .postulante_detalles{
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    margin: 10px auto;
}

#backend .postulante_detalles span{
    font-weight: bold;

}

#backend #imagen-clear_id {
    display: none;
}

#backend label[for="imagen-clear_id"] {
    display: none !important;
}

.errorlist{
    color: red;
}

#backend form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    margin: 10px auto;
    margin-bottom: 110px;
}

#backend form label {
    display: block;
}

#backend form input[type="text"],
#backend form input[type="date"],
#backend form input[type="email"],
#backend form input[type="tel"],
#backend form input[type="url"],
#backend form input[type="number"],
#backend form select,
#backend form .select2 {
    width: 100%;
    height: 28px;
    border-radius: 4px;
        border-width: 1px;
    border-style: solid;
    border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}

#backend form .select2 {
    width: 100% !important;
    height: auto !important;
}

#backend form input[type="checkbox"]{
    margin: 5px;
    width: 15px;
    height: 15px;
}

#backend textarea{
    width: 100%;
    height: 70px
}

#backend form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

#backend form button[type="button"] {
    font-size: 14px;
    margin-bottom: 5px;
}

#backend .formulario-goback{
    margin-bottom: 500px;
    width: 50%;
    background-color: lightgray;
    color: black;
    font-size: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    align-content: center;
}

.select2-container {
    color: black !important;
    }

.short-form {
    margin-bottom: 500px !important;
}

#backend .postulante_company{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    margin: 10px auto;
    flex-wrap:wrap;
}

#backend .postulante_company_logo{
display: flex;
    height: 100px;
    margin: 0 10px 10px 0;
    border-radius: 5px;
    background: white;
    padding: 0 5px;
}

#backend .postulante_company_logo_unit{
max-width:100px;
border-radius: 5px;
object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 910px) {

    #backend .formulario-goback{
        width: 90%;
    }

    #backend form {
        width: 90%;
    }

    #backend h2{
        width: 90%;
    }

    #backend .postulante_company{
    width: 90%;
    }

    #backend .postulante_company_logo{
    height: 50px;
    }

    #backend .postulante_detalles{
        width: 90%;
    }

}