body::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100dvw;
    height: 100dvh;
    /* background-image: url('/open_school/2025/img/background2.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .2;
}

.container{
    font-family: sans-serif;
    position: relative;
    display: grid;
    place-items: center;
    height: 100dvh;
    width: 95%;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    /* background-image: url('/open_school/2025/img/background1.jpg?20250521'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.container::before{
    /* position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: .2; */
}

.buttons{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: .25rem;
    max-width: 90%;
    background-color: #fffc;
}
.buttons button{
    height: 2.5em;
    width: 10em;
    font-size:1.15rem ;
    background-color: #fff;
    border-color: #bc0301;
    color: #bc0301;
    border-radius: .15em;
}
.buttons p{
    line-height: 1.5;
    background: #fff;
    border-radius: .25em;
    padding: .5em 1em;
    margin-bottom: 2em;
}
.buttons p span{
    color: #bc0301;
    font-weight: bold;
}


dialog{
    border: 1px solid #393939;
    border-radius: .25rem;
    background-color: #efefef;
}
dialog h2{
    font-size: 1rem;
    color: #bc0301;
}
dialog h2 + p{
    text-align: justify;
}
.login-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.inputs{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 15rem;
}
.login-container input{
    font-size: 1.25rem;
    text-align: center;
    padding: .25em .5em;
    border: 1px solid #ccc;
    border-radius: .25rem;
}
.inputs small{
    text-indent: -1em;
    margin-left: 2em;
    font-size: 75%;
    line-height: 1.3;
}
.login-container .buttons{
    background-color: transparent;
}
.alert{
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2em;
    color: red;
    font-size: 70%;
    text-align: center;
}
