:root {
    --color-footer: #002d91;
}

body {
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
}

#loaderPage {
    position: fixed;
    z-index: 25000;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.color-texto-footer {
    color: var(--color-footer);
}

.borde-formulario {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.mono-fondo {
    background-image: url("../img/fondo-formulario/monito-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

a.color-texto-footer:hover {
    color: var(--color-footer);
}