@import "parametros.css";


body{
    background-color: var(--color-light);
    background-image: url("../images/bg/inicio.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: var(--color-1);
    font-family: var(--font-family-text), sans-serif;
    font-weight: 200;

    width: 100%;
    position: relative;
    margin: 0;
    height: 100%;
}

.logo {
    max-width: 350px;
    width: 100%;
}
.title {
    font-size: 42px;
    line-height: 1.3;
    font-family: var(--font-family-title), sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.subtitle {
    font-size: 16px;
    font-weight: 300;
}




.register-content{
    background-color: var(--color-3);
    color: var(--color-light);
    padding: 30px 40px;
    max-width: 700px;
    margin: 20px auto 40px;
    border-radius: 20px;
}
.register-content .panel-heading{
    margin-top: 20px;
    border-bottom: 2px solid rgb(196, 204, 224);
    margin-bottom: 20px;
}
.register-content .panel-heading .panel-title{
    font-weight: 600;
    font-size: 24px;
}

.bootbox{
    color: #205b9f;
    font-weight: 400;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff;
    display: table;
    text-align: center;
}
#preloader .loader {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 200px;
    height: 200px;
}
#preloader .loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #0b101f;
    border-right-color: #eee;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 0 auto;
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

[type="button"], [type="reset"], [type="submit"], button {
    -webkit-appearance: inherit !important;
}


div.is-invalid {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: var(--color-5);
    font-weight: 400;
}

.form-control{
    color: var(--color-1);
}

.form-control::placeholder {
    color: #C2C2C2;
    opacity: 1;
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #C2C2C2;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #C2C2C2;
}

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {



}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {  }




/**************** UTILITIES CSS *********************************************/
.space10 {
    min-height: 10px;
}
.space20 {
    min-height: 20px;
}
.space30 {
    min-height: 30px;
}
.space40 {
    min-height: 40px;
}
.space50 {
    min-height: 50px;
}
