.member {
    font-family: GoogleSans, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #fff;
    background-color: #000;
    height: calc(100vh - 40px);
    padding-top: 120px;
}

.member .container {
    height: 750px;
    max-height: 90%;
    background-color: #181818;
    padding-top: 48px;
}

.member-title {
    font-family: GoogleSans Bold, Arial, sans-serif;
    font-size: 24px;
    padding-bottom: 20px;
}

.btn-register {
    display: inline-block;
    font-family: GoogleSans Medium, Arial, sans-serif;
    font-size: 18px;
    background-color: #0360E2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.btn-register:hover {
    color: #fff;
    opacity: .85;
}

.list-member {
    display: flex;
    gap: 15px;
    justify-content: center;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 15%;
}

.member-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 980px) {
    .member .row {
        display: flex;
        align-items: center;
    }

    .col-md-11 {
        width: 46.833333%;
    }
}

@media (max-width: 979px) {
    .member {
        height: auto;
        padding-top: 50px;
    }
    .list-member {
        position: relative;
        left: 0;
        padding: 30px 0;
    }

    .bg-member {
        display: none;
    }

    .member-col {
        display: inline-flex;
    }

    .member .container {
        max-height: unset;
        height: auto;
    }
}