/* Coded with love by Mutiullah Samim */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: white !important;
    color: white !important;
}
.user_card {
    /*height: 400px;*/
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    background: #0152A0;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /*padding: 10px;*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;

}
.brand_logo_container {
    /* position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    text-align: center; 
    position: absolute;
    height: 180px;
    width: 950px;
    top: -80px;
     border-radius: 50%;
    background: white;
    padding: 10px;*/
    text-align: center;
}
.brand_logo {
    height: auto;
    width: 100%;
    max-width: 1110px;
    /* border-radius: 50%;
    border: 2px solid white; */
}

@media (max-width: 600px) {
    .brand_logo {
      max-width: 90%;    /* Ocupa un 90% del ancho del móvil */
      margin: 0 auto;    /* Centra la imagen */
      display: block;    /* Asegura que se comporte como bloque */
    }
}

.form_container {
   /* margin-top: 100px; */
}
.login_btn {
    width: 100%;
    background: white !important;
    color: white !important;
}
.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.login_container {
    padding: 0 2rem;
}
.input-group-text {
    /* background: white !important;
    color: white !important; */
    background: #6c757d;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
    width: 215px !important;
    color: white;
}
font.input-group-text {
    width: 39px !important;
}
.input_user,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: white !important;
}
form{
    width: 70%;
}

a, a.ml-2{
    color: white !important;
    text-decoration: underline;
}
a, a.ml-2:hover{
    color: #6c757d;
}

/*Redes sociales*/
ul.socialIcons {
    padding: 0;
    text-align: center;
}
.socialIcons li {
    background: yellow;
    list-style: none;
    display: inline-block;
    margin: 15px;
    margin-top: 15%;
    border-radius: 2em;
    overflow:hidden;
}
.socialIcons li a {
    display: block;
    padding: .5em;
    max-width: 2.3em;
    min-width: 2.3em;
    height: 2.3em;
    white-space: nowrap;
    line-height: 1.5em;
    transition:.5s;
    text-decoration: none;
    font-family: arial;
    color: #fff;
}
.socialIcons li i {
    margin-right:.5em;
}
.socialIcons li:hover a {
    max-width:200px;
    padding-right:1em;
}
.socialIcons .facebook {
    background: #3b5998;
    box-shadow: 0 0 16px #3b5998;
}
.socialIcons .twitter {
    background: #00aced;
    box-shadow: 0 0 16px #00aced;
}
.socialIcons .instagram {
    background: #cd486b;
    box-shadow: 0 0 16px #cd486b;
}
.socialIcons .youtube {
    background: #FE0000;
    box-shadow: 0 0 16px #c92228;
}
.socialIcons .linkedin {
    background: #006699;
    box-shadow: 0 0 16px #666666;
}

.refresh{
    cursor: pointer;
}

/* The radio */
.radio {

    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

/* Hide the browser's default radio button */
.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkround {

    position: absolute;
    top: 6px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff ;
    border-color:white;
    border-style:solid;
    border-width:2px;
    border-radius: 50%;
}


/* When the radio button is checked, add a blue background */
.radio input:checked ~ .checkround {
    background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkround:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio input:checked ~ .checkround:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio .checkround:after {
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:white;


}

/* The check */
.check {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    padding-right: 15px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff ;
    border-color:white;
    border-style:solid;
    border-width:2px;
}



/* When the checkbox is checked, add a blue background */
.check input:checked ~ .checkmark {
    background-color: #6c757d  ;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid ;
    border-color:white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cust-btn{
    margin-bottom: 10px;
    background-color: white;
    border-width: 2px;
    border-color: white;
    color: #fff;
}
.cust-btn:hover{

    border-color: white;
    background-color: #fff;
    color: white;
    border-radius: 20px;
    transform-style: 2s;

}

.modal{
    color: black;
}

#ctitcab{
    min-height: 196px;
}

@media (max-width: 800px) {
    .input-group-text {
        width: 38px !important;
    }

    #ctitcab{
        min-height: 225px;
    }

    font.input-group-text{
        display: none;
    }
    #locapt{
        display: block;
    }

    .socialIcons li {
        margin: 80px 5px 5px 5px !important;
    }
}

/* @media (min-width: 800px) {
#register > div:nth-child(4) > div > span, #register > div:nth-child(5) > div > span{
    width: 228px !important;
}
} */