
/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/*==== - - - - - - - - -|| Form Container ||- - - - - - - - - ====*/
/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#hubicame {
    display: block;
    height: inherit;
    box-shadow: 1px 1px 1px 1px #474647;
    width: 65%;
    margin-left: 10%;
    list-style: none;
    font-size: large;
    line-height: 2em;
    
}

.form_container
    {
    /*background: rgba(251,251,158,1);*/
    background-color: rgba(14, 26, 29, 0.75);
    box-shadow: 0 0 5px 1px rgb(51, 1, 41);
    border-radius: 5px;
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px auto;
    padding: 15px 5px;
    position: relative;
    width: 95%;
    min-width: 90%;
    }
/*==== - - - - - - - - -|| Form fieldset  ||- - - - - - - - - ====*/
.form_fieldset
    {
    color: rgba(237, 243, 209, 0.7);
    border-radius: 1px;
    font-size: 1.2em;
    margin: auto;
    }

.form_row
    {
    display: flex;
    width: 99%;
    margin: 10px auto;
    }
.form_row_all
    {
    display: flex;
    justify-content: space-between;
    width: 99%;
    margin: auto;
    }
.form_titulo
    {
    display: block;
    margin-top: 5;
    margin: auto;
    padding: 10px 0 30px 0;
    width: 50%;
/*  text-align: center;  */
/*  text-shadow: 0 0 20px 1px rgba(245,213,245,0.5); */
    }
.form_esc a
    {
    color: #f00;
    display: block;
    font-size: 30px;
    position: absolute;
    right: 15px;
    text-decoration: none;
    top: 10px;
    }
.form_errors
    {
    background: linear-gradient(90deg, #B4409D, #82246F);
    color: #000;
    display: block;
    height: 30px;
    margin: auto;
    width: 96%;
    }

.form_label
    {
    box-decoration-break: clone;
    display: block;
    height: 1.1em;
    margin-left: 1%;
    margin-top: +65px;
    max-width: 100%;
    min-width: 90%;
    padding: 1%;
    position: absolute;
    transition: all 0.2s;
    z-index: -100;
/*  padding-left: 15px; */
    }
.form_widget
    {
    background: rgba(10,128,153,0.3);
    border-radius: 2px 2px 2px 2px;
    box-shadow:     0.5px  0.5px 0.6px rgba(54, 11, 175,0.5);
    color:rgb(255, 255, 255);
    height: 1.2em;
    margin: 2px auto;
    padding: auto;
    width: 90%;
/*  border: 1px solid rgba(0,0,0,0.5);*/
/*  box-shadow: -0.1px -0.1px 0.2px rgba(255,255,255,0.7);  */
    }
.form_textarea 
    {
    background: rgba(10,128,153,0.2);
    width: 90%;
    min-width: 320px;
    color:rgb(255, 243, 207);
    margin: auto;
    }
.form_select 
    {
    background: rgba(10,128,153,0.3);
    border-radius: 2px 2px 2px 2px;
    box-shadow:     0.5px  0.5px 0.6px rgba(54, 11, 175,0.5);
    color:rgb(29, 1, 63);
    height: 1.3em;
    margin: auto;
    padding: auto;
    } 
.form_submit
    {    
    background: linear-gradient(rgba(41, 86, 65, 0.5), rgba(88, 162, 180, 0.5), rgba(41, 86, 65, 0.5)); /* Standard syntax */
    /*box-shadow: 0.8px  0.8px 0.8px rgba(164,167,151,1);*/
    border-radius: 2px;
    border-top: solid 1px #747866;
    cursor: pointer;
    width: 150px;
    font-size: 1.1em;
    margin: auto;
    color: rgb(254, 254, 254);
    }
    
/*    background: rgba(113,91,113,0.5);
    box-shadow:     -0.1px -0.1px 0.2px rgba(255,255,255,0.7);
    box-shadow:     0.5px  0.5px 0.6px rgba(255,255,255,0.9);
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
    padding: 10px 3% 0 3%;
    width: 18%;
/*  background: linear-gradient(-90deg, #0A6B14, #1F922A);  */
/*  font-size: 1.2em;  */
    
.form_submit:focus, .form_submit:hover
    {
    background: linear-gradient(rgba(88, 162, 180, 0.1), rgba(41, 86, 65, 0.1), rgba(88, 162, 180, 0.1)); /* Standard syntax */
    /*box-shadow: 0.8px  0.8px 0.8px rgb(7, 7, 7);*/
    border-top: solid 1px #000;
    font-size: 1.1em;
    color: #fffF00;
    }

*************************************

.form_input
    {
    background: rgba(10,128,153,0.3);
    margin: 0, 15px;
    padding: 03px 10px;
    width: 80%;
    max-width: 80%;
    color: RED;
    }
.contact_text
    {
    display: block;
    margin-bottom: 5px;
    align-items: center;
    }
.form_date {line-height: 1em; font-size: small;}
.form_input:focus
    {
    outline: none;
    /*outline: 1px solid rgba(0,0,0,0.7); */
    }
.form_input:focus + .form_label{
    margin-top: -105px;
    color: #100235;
    font-weight: bold;
    }
.form_textarea:focus + .form_labelt{
    margin-top: -195px;
    color: #474647;
    font-weight: bold;
    }
.form_label, .form_labelt
    {
    padding-left: 15px;
    position: absolute;
    margin-top: -65px;
    z-index: -1;
    transition: all 0.2s;
    }
.form_labelt
    {
    margin-top: -160px;
    }


/* = = = = = = = = = = = = verificando si es humano = = = = = = = = = = = = = = */

.ishuman_content {
    background-image: url(../img/malla.jpg);
    background-size:cover;
    display: block;
    max-height: 180px;
    min-width: 320px;
    color:floralwhite;
    font-size: 1em;
  }
  
  .is_human_title {
    margin: 0 0 0 0;
    text-align: center;
    color: rgb(79, 3, 79);
}
.is_human_detail {
    font-size: 1.8em;
    color: coral;
}
.card__check {
    /*background-color: #B4409D;*/
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    /*width: 90%;*/
    max-height: 120px;
    margin: 0 auto;
    margin-top: 1px;
    height:fit-content; 
    color: chocolate;      /*Para ocultar los radio-buttom  */
}
.card__check-item {
    display: contents;
    flex-wrap: nowrap;
    font-size: 1em;
    color: rgb(255, 255, 255);
    margin: auto;
    width: 99%;
}
.card__check-item:hover {
     cursor: pointer;
   
}
.card__check-item:active{
    background-color: #fffF00;
    margin-top: 3px;
    z-index: 30px;
}
#messages-list {
    color:#f00;
    font-size: 1.8em;
}