/* estilos formulario inscripcion */
body{
    background-color: #1D5DAB;
}

.puj-card-margin{
    //mragin: y x;
    margin: 1.25rem .5rem;
}

.puj-form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.puj-form-control{
    //mragin: y x;
    margin: .25rem .5rem;
    min-width: 268px;
}

.puj-input-error{
    color: red!important;
}

.puj-msg-error{
    display: none;
}

.puj-msg-error-active{
    display: block;
    color: red;
}

.accept-politics{
    cursor: pointer;
    color: cornflowerblue;
    text-decoration: underline;
}

.border-error{
    border-color: red!important;
}

.img-logo{
    width: 290px;
}

.img-logo2{
    width: 120px;
}

.puj-form-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* fin estilos formulario inscripcion */

/* estilos pata pc */
@media (min-width: 1024px) {
    .puj-card-margin{
        margin: 3rem;
    }
}
/* fin estilos pata pc */

/* Estilos para el contenedor del loader */
.loader-container {
    position: fixed;
    z-index: 9999;/* pone el elemento sobre los demás*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

/* Estilos para el loader */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* hace el efecto del spiner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* fin estilos loader*/