body {
    font-family: Arial, sans-serif;
}


button {
    text-align: center;
}


button,
.divloginform .loginform-container .tocreateac,
.divloginform .loginform-container .togotpw,
.nav_top a {
    cursor: pointer;
}


.divloginform {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 900;
}


.divloginform .loginform-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.divloginform .loginform-container .tocreateac {
    color: #0276fb;
    text-decoration: underline;
}


.divloginform .loginform-container .togotpw {
    color: #fb0202;
    text-decoration: underline;
}


.divloginform .loginform-container .cust_login_text {
    display: none;
}




.divcreateform {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 901;
}


.divcreateform .createform-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.divcreateform .createform-container .cust_create_text{
    display: none;
}


.divgotpwform {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 902;
}


.divgotpwform .gotpwform-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.divgotpwform .gotpwform-container .cust_gotpw_text{
    display: none;
}


.nav_top {
    position: fixed;
    width: 100%;
    z-index: 950;
}


.nav_top ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0dce06;
}


.nav_top li {
    float: left;
}


.nav_top li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


.nav_top .cust_logout {
    display: none;
}


.nav_top li a:hover:not(.active) {
    background-color: #0276fb;
}


.nav_top .active:hover {
    background-color: #ec4e4e;
}


.nav_top img {
    width: 45px;
    height: 42px;
}


.nav_top span {
    position: absolute;
    background-color: red;
    width: 40px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #ffffff;
    top: 58%;
    right: 85px;
}


/*to set menu*/
.nav_top li ul {
    display: none;
    position: absolute;
    background-color: #0dce06;
    min-width: 160px;
    z-index: 1;
}


.nav_top li:hover ul {
    display: block;
}


.nav_top li ul li {
    float: none;
}


.nav_top li ul li a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}


.nav_top li ul li a:hover {
    background-color: #0276fb;
}

