.authenticate{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.authenticate form{
    display: flex;
    flex-direction: column;
}
.authenticate form h1{
    font-size: 70px;
    line-height: 1;
    text-align: center;
}
.authenticate form h2{
    font-size: 18px;
    margin: 20px 0 5px;
    font-weight: 400;
}
.authenticate form .buttons{
    display: flex;
    margin: 30px 0;
    gap: 20px;
    flex-direction: row-reverse;
}
.authenticate form button{
    width: 100%;
    padding: 12px 0;
}
.authenticate a img{
    width: 100%;
}
.authenticate .captcha{
    display: flex;
    gap: 20px;
}
.authenticate .captcha input{
    width: calc(100% - 50px);
}
.authenticate .captcha img{
    margin-top: auto;
}
@media (max-width: 500px) {
    .authenticate form{
        width: 100%;
        padding: 25px;
    }
    .authenticate form h1{
        font-size: 50px;
    }
}