body {
    width: 100%;
    height: 100%;
}


.login-form {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.849);
    min-width: 400px;
    width: 60%;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0px 0px 1px 1px rgba(128, 128, 128, 0.767);
}

.btn_submit {
    background-color: #00307cf3;
    width: 100%;
    color: white;
    transition: 0.3s ease;
}
.btn_submit:hover{

    border: 1px solid  #00307cf3;
    background-color: white;
    color:  #00307cf3 ;
}

@media screen and (max-width:1200px) {
    .login-form {
        width: 75%;
    }
}

#logo_penta {
    transition: transform 0.6s ease-in-out;
    z-index: -100;
}

.jump {
    transform: translateY(-30px);
}

.rotate {
    transform: rotate(360deg);
}