.get-account-modal {
    display: none;
    z-index: 100;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
}

.get-account-modal .modal-inner {
    z-index: 101;
    text-align: center;
}

.get-account-modal .new-account-tabs {
    max-width: 664px;
    width: 100%;
    background: #161721;
    background: -webkit-linear-gradient(to bottom right, #2f3545, #1b1f2b);
    background: linear-gradient(to bottom right, #161721, #0a1016);
    display: inline-block;
    border-radius: 7px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.59);
    overflow: hidden;
    margin-top: 20px;
}

.get-account-modal .new-account-tabs .tabs-holder {
    margin-top: 0;
    padding: 10px 15px 0;
    display: flex;
}

.get-account-modal .new-account-tabs .tabs-holder span {
    line-height: 19px;
    text-transform: none;
}

.get-account-modal .new-account-tabs .tabs-holder span.active {
    font-size: 12px;
    text-transform: none;
}

.get-account-modal .tab-content {
    display: none;
    width: 100%;
    text-align: left;
}

.get-account-modal .tab-content.active {
    display: inline-block;
    overflow-x: scroll;
}

.get-account-modal .account-input {
    display: inline-block;
    width: 100%;
    float: left;
    padding: 10px 15px;
}

.get-account-modal .account-input > p {
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.get-account-modal .account-input > input {
    display: inline-block;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 2px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-top: 5px;
}

.get-account-modal input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff2b !important;
    font-size: 12px
}

.get-account-modal input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff2b !important;
    font-size: 12px
}

.get-account-modal input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff2b !important;
    font-size: 12px
}

.get-account-modal input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff2b !important;
    font-size: 12px
}

.get-account-modal .desc {
    font-size: 12px;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 0 15px;
    color: #ffffff96;
}

.login-presentation {
    height: 427px;
    position: relative;
    display: inherit;
    background: #ffffff0a;
    text-align: left;
}

.login-presentation img {
    position: absolute;
    opacity: 0.1;
    bottom: 0;
    /* width: 50%; */
    right: 0;
}

.login-presentation ul li {
    color: #fff;
    font-weight: 500;
    position: relative;
}

.login-presentation ul li:first-child {
    list-style: none;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 25px;
}

.login-presentation ul p {
    color: #fff;
    font-size: 12px;
    margin-top: 30px;
}

.get-account-modal button {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .get-account-modal .modal-inner {
        height: 100%;
        /* overflow-x: scroll; */
    }

    .get-account-modal .new-account-tabs {
        height: 100%;
        margin: 0;
        border-radius: 0;
        overflow-x: auto;
    }

    .login-presentation ul {
        margin: 5px 0;
    }

    .login-presentation ul li {
        font-size: 12px;
    }

    .login-presentation ul li:first-child {
        margin-bottom: 10px;
    }

    .login-presentation ul p {
        margin-top: 10px;
        display: none;
    }

    .login-presentation {
        height: 215px;
    }
}