/***** Structure *****/
#login {
    position: relative;
}
#login {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
@media screen and (min-width: 1080px) {
    #login {
        margin-top: 35px;
    }
    #login section {
        width: 35em;
    }
}
@media screen and (max-width: 1080px) {
    #login {
        margin-top: 10%;
    }
    #login section {
        width: auto;
    }
}
.login_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/***** Img *****/
.login_header img {
    width: auto;
    height: 55px;
}

/***** Intro
.login_header p {
    font-family: 'content-font';
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #fff;
}
*****/