html, body{
    overflow:hidden;
    touch-action: none;
    overscroll-behavior: contain;
}

*{
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

body{
    background-color: black;
    background-image: url("./img/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container{
    background-color: #fff;
    padding: 2rem 2rem;
    border-radius: 10px;
    /* Box-shadow: rgba(186, 186, 186, 0.8) 5px 7px 28px 10px;
    -webkit-box-shadow: rgba(186, 186, 186, 0.8) 5px 7px 28px 10px;
    -moz-box-shadow: rgba(186, 186, 186, 0.8) 5px 7px 28px 10px;
*/}

.form form {
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.title-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.title-container img{
    height: 8rem;
    width: 8rem;
}

#bolde{
    font-weight: bolder;
}

.img-login{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input{
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.input input{
    border: none;
    text-align: center;
    outline: none;
    border-bottom: 2px solid #403E3E;
    padding: .4rem;
}



#enviar{
    border: none;
    background-color: #403E3E;
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

#enviar:hover{
    background-color: #C69C55;
}

#show,
#close{
    position: absolute;
    margin-top: 1.6rem;
    margin-left: 15rem;
    cursor: pointer;
}

.error-login{
    font-size: 13px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: .5rem 0;
    color: #fff;
    background-color: #ff0000;
    padding: 0.5rem;
    border-radius: 1rem;
}

.none{
    display: none;
}

#SevenPK{
    margin-top: 2rem;
    color: #fff;
    font-size: .9rem;
}

#SevenPK a{
    color: #fff;
    font-size: 1rem;
}

@media (max-width:600px){
    .form{
        height: 90vh;
    }
} 