body {
    margin: 0;
}

#app_nav_bar {
    width: 100vw;
    position: fixed;
    height: 50px;
    font-size: 18;
    color: #000000;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#app_nav_bar div {
    display: inline-block;
}

#app_warning {
    width: 100%;
    background-color: #F044FF;
    padding: 12px;
    position: fixed;
    top: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#app_warning img {
    width: 22px;
    height: 22px;
    background-color: #222222;
}

#app_warning div {
    color: #000000;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    padding-left: 6px;
    word-wrap: break-word
}

#app_content-container {
    position: relative;
    top: 50px;
    padding: 60px 12px 12px 12px;
}

#app_logo {
    text-align: center;
}

#app_logo img {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
}

#app_account_tip,
#app_password_tip {
    color: rgba(34, 34, 34, 0.40);
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    word-wrap: break-word;
}

#app_accout_input {
    position: relative;
}

#app_accout_input img {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
    top: 18px;
    display: none;
}

#app_password_input {
    position: relative;
}

#app_password_input img {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 18px;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(34, 34, 34, 0.40);
    opacity: 1;
    /* Firefox */
}

input {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 30px;
    border: none;
    padding: 14px 16px 14px 16px;
}

#app_desc {
    color: #ff1921;
    font-size: 12px;
    font-family: Poppins;
    font-weight: 400;
    word-wrap: break-word
}

#app_submit-area {
    width: 100%;
    margin-top: 32px;
    text-align: center;
}

#app_submit-area button {
    /* width: 100%; */
    background-color: #F044FF;
    border-radius: 30px;
    padding: 12px 54px 12px 54px;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

#app_customer-service {
    position: fixed;
    width: 54px;
    height: 64px;
    right: 17px;
    bottom: 90px;
}

#app_customer-button {
    position: fixed;
    padding: 8px 7px 8px 7px;
    bottom: 60px;
    width: 62px;
    right: 8px;
    bottom: 80px;
    background: linear-gradient(94deg, #4babff 0%, #4693ff 48%, #4693ff 100%);
    border-radius: 54px;
    text-align: center;
    color: white;
    font-size: 7px;
    font-family: Poppins;
    font-weight: 500;
    word-wrap: break-word;
}

#app_bottom-box {
    position: relative;
    height: 120px;
    top: 50px;
}

.AIHelpSupportBox {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}

.close {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #A1A1A1;
    border-radius: 25px;
    cursor: pointer;
}

.close:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    top: 14px;
    left: 6px;
}

.close:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
    top: 14px;
    left: 6px;
}