
.trabajador-gobierno {
    display: none;
}


.text-muted {
    margin-left: 6px;
    font-size: 12px;
}

.label-select {
    font-size: 16px;
    /* position: absolute; */
    /* left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    pointer-events: none; */
    font-weight: normal;
}

.fondo-registro{
  /* Mejor declararlo en body, pero si lo necesitas aquí: */
  font-family: 'Roboto Condensed', sans-serif;

  margin: 40px 0;
  width: 100%;
  /* altura flexible para centrar verticalmente */
  min-height: 60vh; /* o 100vh si quieres pantalla completa */

  display: flex;
  justify-content: center;
  align-items: center;

  /* overlay + imagen de fondo */
  background:
    linear-gradient(to bottom, rgba(255,255,255,.70), rgba(255,255,255,.93)),
    url('../../identidad/fondo_registro.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* color de respaldo si no carga la imagen */
  background-color: rgba(255,255,255,.1);
}

#container-form {
    margin-top: 0 ;
    font-family: 'Roboto Condensed', sans-serif;
    /* background: #4568DC; */
    /* opacity: 0.6; */
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to right, #B06AB3, #4568DC); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to right, #B06AB3, #4568DC); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    margin-top: 0px;
    margin-bottom: 40px;
    width: 100%;
    /* height: 1200px; */
    background-color: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .70), rgba(255, 255, 255, .93)), url('../../identidad/fondo_registro.jpg');
}

#form {
    background-color: #fff;
    padding: 40px 40px;
    /* box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8); */
    -webkit-box-shadow: 0px 5px 6px 4px rgba(209,209,209,1);
    -moz-box-shadow: 0px 5px 6px 4px rgba(209,209,209,1);
    box-shadow: 0px 5px 6px 4px rgba(209,209,209,1);
    border-radius: 10px;
}

form .grupo{
    position: relative;
    margin: 20px 10px 20px 0px;
}

.form{
    width: 100%;
    margin: auto;
}

.form-input{
    background: none;
    /* color: #c6c6c6; 
    color: #005cb9;*/
    font-size: 18px;
    padding: 10px 10px 5px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--colorTextos);
}

.form-input:focus{ 
    outline: none;
    color: #5e5d5d;
}

.input-label{
    /* color: var(--colorTextos); */
    font-size: 16px;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    pointer-events: none;
    font-weight: normal;
}

.form-input:focus~.input-label, .form-input:valid~.input-label {
    top: -14px;
    font-size: 12px;
    color: #2196f3;
}

/* .form-input:optional~.input-label{
    top: -14px;
    font-size: 12px;
    color: #2196f3;
} */

.barra{
    position: relative;
    display: block;
    width: 100%;
}

.barra::before{
    content: "";
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #0364a8, #40b4e3);
    transition: 0.3s ease width;
    left: 0;
}

.form-input:focus~.barra::before{
    width: 100%;
}

/* radio buttons css */
.radio {
    margin: 0.5rem 0.5rem 2rem 0.5rem;
}
.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.radio input[type="radio"] + .radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}
.radio input[type="radio"]:checked + .radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: #3197EE;
}
.radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
}

/* selects css */
.select-css {
    background-color: #fff;
    border: 1px solid gray;
    color: gray;
    position: relative;
    width: 100%;
}
.select-css:hover {
    border-color: #000;
}
.select-css:before {
    display: block;
    border-top: 6px solid gray;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    top: 15px;
    right: 10px;
    text-align: center;
    content: '';
    pointer-events: none;
}
.select-css select {
    background-color: transparent;
    border: 0 none;
    box-shadow: none;
    color: gray;
    display: block;
    font-size: 100%;
    line-height: normal;
    margin: 0;
    padding: .5em;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select-css select::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
/* .select-css option {
    background-color: red;
    padding: 100px 0;
} */