@import "parametros.css";


body {
    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;
    height: 100vh;
    margin: 0;
}




.title {
    font-size: 24px;
    line-height: 1.3;
    font-family: var(--font-family-title), sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.login {
    background-color: var(--color-3);
    color: var(--color-light);
    padding: 30px 40px;
    border-radius: 20px;
}
a.light {
    color: var(--color-light);
    font-weight: 600;
}
a.light:hover {
    color: var(--color-5);
    text-decoration: none;
}

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



.form-control{
    font-family: var(--font-family-title) sans-serif;
    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) {

    .title {
        font-size: 20px;
        line-height: 1.3;
    }


}

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




