.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #040404;
    position: relative;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    min-height: 333px;
    /*width: 30%;*/
}

    .popup-content h1 {
        font-size: 18px;
    }

.form-detail h1 {
    margin: 0 0 23px 0;
}

.form-detail-item {
    font-size: 18px;
    display: flex;
    color: #c2c7ff;
    margin: 14px 0;
}

.detail-item-error {
    font-size: initial;
}

.form-detail-item b {
    min-width: 166px;
    color: #fff;
}

.form-detail-footer .btn {
    background: #fff;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 38px;
    border-radius: 7px;
    font-weight: bold;
}

.next-topup-btn, .next-topup-btn:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    /*padding: 5px;*/
    border-radius: 3px;
    display: inline-flex;
}

.form-detail-footer {
    display: flex;
    gap: 13px;
    margin-top: 42px;
}

.yes-btn {
    background: #eafc34 !important;
}

.popup-content img {
    width: 100%;
}

.main-logo {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    display: block;
    background-color: #fff;
    padding: 15px;
    width: fit-content;
    border-radius: 0px 0px 29px 0px;
    /* box-shadow: 0px 0px 12px 9px #0000001f; */
}

    .main-logo img {
        width: 180px;
    }

.yellow-bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: #eafc34;
    margin-top: 128vh;
    z-index: -1;
}

body {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100vh;
    font-size: 15px;
    color: #fff;
    font-family: sans-serif;
    background: url("/Images/1.jpg");
    border-top: 5px solid #fff;
    background-size: cover;
}

.main {
    margin: auto;
    min-width: 350px;
    height: auto;
    position: relative;
    background: hsl(0deg 0.31% 2.75% / 41%);
    backdrop-filter: blur(30px);
    border-radius: 5px;
    padding: 25px 30px;
}

.form-input input {
    border: 0px;
    padding: 5px 12px;
    outline: none;
    width: 100%;
}

.form-input label {
    white-space: nowrap;
    min-width: 125px;
}

.form-input {
    display: flex;
    margin: 7px 0px;
    align-items: center;
}

.copyright {
    position: absolute;
    left: 0;
    right: 0;
    color: #000;
    text-align: center;
    bottom: 0px;
    width: 100%;
    margin: auto;
    padding: 10px 0;
    background-color: #ffffff;
    font-size: 12px;
}

.title {
    padding-bottom: 15px;
    margin-bottom: 23px;
    text-align: center;
}

    .title h1 {
        margin: 0px;
        font-size: 20px;
    }

.form-action button {
    border: none;
    color: #fff;
    padding: 10px 38px;
    border-radius: 0px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 17px;
    background-color: #8e6621;
}

.popup-link {
    cursor: pointer;
    display: block;
    font-size: 11px;
    text-align: right;
    margin: 0px 0px 15px 0px;
}

@media (max-width: 1200px) {
    .main {
        width: 100%;
        margin: 0%;
        border-radius: 0px;
        padding: 20px 19px;
    }

    .popup-content {
        padding: 30px;
        min-height: auto;
        width: 70%;
    }
}

#loadingMessage {
    z-index: 999;
    margin: auto;
    text-align: center;
}

    #loadingMessage img {
        animation: mymove 5s infinite;
    }

    #loadingMessage span {
        display: block;
        text-align: center;
        color: #000;
    }

    #loadingMessage h3 {
        margin: 0;
        padding: 10px 0px 5px;
    }

@keyframes mymove {
    50% {
        transform: rotate(180deg);
    }
}
