/* ##########  Acceso ########## */

.powerbi_report1 {
    width: 90%;
    margin: auto;

}

.powerbi_report2 {
    width: 90%;
    margin: auto;

}

@keyframes blink {     /* parpadeo para Bienvenida */
    0% { color: #FF6600; }
    50% { color: #003366; }
    100% { color: #FF6600; }
}

.blink {
    animation: blink 1s linear infinite;
    padding-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}

.hello_pgm {
    text-align: center;
}

.hello_pgm h2{
    color: #003366;
    font-size: 24px;
}

.container_pgm {
    display: flex;
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    height: 100%;
}

@keyframes slideIn {    /* ingreso de logo pgm */
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
}
}

#image_pgm {
    width: 300px;
    height: 100px;
    animation: slideIn 2s forwards;
    -webkit-animation: slideIn 2s forwards;
}













.bloque_login {
    width: 90%;
    margin: auto;
    height: 600px;
    margin-bottom: 15px;
}

main {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
}

.contenedor__todo {
    width: 100%;
    max-width: 800px;
    margin: auto;
    position: relative;
}

.caja__trasera{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 70px 0;
    width: 100%;
    padding: 10px;
    justify-content: center;
    background-color: #666666;
}

.caja__trasera div {
    margin: 100px 0px 100px 40px;
    color: white;
    transition: all 500ms;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    -o-transition: all 500ms;
}
.caja__trasera div p,
.caja__trasera button {
    margin-top: 30px;
}

.caja__trasera div h3 {
    font-weight: 400;
    font-size: 20px;
}

.caja__trasera div p {
    font-size: 14px;
    font-weight: 300;
}

.caja__trasera button{
    padding: 10px 40px;
    border: 2px solid white;
    font-size: 14px;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    color: white;
    outline: none;
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.caja__trasera button:hover {
    background: white;
    color: #003366;}

/*Formularios*/

.contenedor__login-register {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
    position: relative;
    top: -185px;
    left: 10px;
    /*LatransicionvadespuesdelcodigoJS*/
    transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -webkit-transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -moz-transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -ms-transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -o-transition: left 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

.contenedor__login-register form {
    width: 100%;
    padding: 80px 20px;
    background: white;
    position: absolute;
    border-radius: 30px;
    border:2px solid #003366;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.contenedor__login-register form h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #003366;}

.contenedor__login-register form input {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #F2F2F2;
    font-size: 14px;
    outline: none;
}

.contenedor__login-register form button {
    padding: 10px 40px;
    margin-top: 40px;
    border: none;
    font-size: 14px;
    background: #003366;
    font-weight: 600;
    cursor: pointer;
    color: white;
    outline: none;
    margin-left: 100px;
    border: 2px solid #666666;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.contenedor__login-register form button:hover {
    background: white;
    color: #FF6600;
    border: 2px solid #FF6600;
}


.formulario__login {opacity: 1; display: block;}
.formulario__register {display: none;}
