/*

=========================================================
* Particularidades que sobreescriben a la plantilla
=========================================================

*/

/* the background image is fixed to the body element. Content on the page will scroll, but the image will remain in a fixed position! */
body {
    background: url('../../assets/img/bg-body.jpg') no-repeat center center fixed;
    background-color: #021D49;
    background-size: cover;
}
@media (max-width: 575px) {
    body { background-image: none; }
}
@media (min-width: 576px) and (max-aspect-ratio: 3/4) {
    body { background-image: url('../../assets/img/bg-body.jpg'); }
}
@media (min-width: 576px) and (min-aspect-ratio: 3/4)  and (max-aspect-ratio: 4/3)  {
    body { background-image: url('../../assets/img/bg-body-3_4.jpg'); }
}
@media (min-width: 576px) and (min-aspect-ratio: 4/3)  and (max-aspect-ratio: 16/10)  {
    body { background-image: url('../../assets/img/bg-body-4_3.jpg'); }
}
@media (min-width: 576px) and (min-aspect-ratio: 16/10)  {
    body { background-image: url('../../assets/img/bg-body-16_10.jpg'); }
}

/* Quitar los bordes curvos de los inputs */
.form-control, .form-select, .form-check-input, .toast {
    border-radius: 0;
}

