* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Fredoka';
    src: url('/static/fonts/Fredoka.ttf') format('truetype');
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 320px) {
    .content {
        width: 250px!important;
    }
}

body {
    background-color: black;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Fredoka;
}

.bg {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 0;
}
.bgheight100p{
    height: 100%;
}
.main {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;

    .logo {
        width: 120px;
        /* margin-top: 67.5px; */
        margin-top: 10.54vh;
        margin-bottom: 15px;
    }

    .title {

        font-size: 19px;
        font-weight: 500;
        line-height: 19px;
        text-align: center;
        margin-bottom: 23.5px;
    }

    .usermessage {
        display: flex;
        position: relative;

        div {
            background-color: #fff;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            height: 30px;
            border-radius: 10px;
            border: 2px solid black;
            line-height: 30px;
            color: black;
            margin-bottom: 30px;

            &:first-child {
                width: 90px;
                margin-right: 12px;
            }

            &:nth-child(2) {
                width: 150px;
            }
        }

        .errmessage {
            position: absolute;
            font-size: 12px;
            font-weight: 400;
            color: #B82A0B;
            border: none;
            bottom: 0;
            margin-bottom: 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 14px;
        }
    }

    .content {
        background: url('/static/msg.png') no-repeat center center;
        background-size: contain;
        width: 277px;
        height: 94.695px;
        /* padding-left: 17px; */
        border-radius: 10px;

        font-size: 14px;
        text-align: left;

        div {
            padding-left: 17px;
        }
        .type {
            margin-top: 16.2px;
            color: black;
            font-weight: 500;
            line-height: 14px;
        }


        .status {
            margin-top: 12px;
            color: black;
            font-weight: 400;
            line-height: 16.8px;
        }
    }

    .btn {
        position: absolute;
        bottom: 10.078125vh;

        font-size: 16px;
        font-weight: 500;
        text-align: center;

        width: 275px;
        height: 40px;
        /* border: 1.5px solid #764528; */
        /* color: #FFE25D; */
        /* background-color: #F0D177; */
        background: url('/static/btn.png') no-repeat center center;
        background-size: contain;
        display: flex;
        align-items: center;
        justify-content: center;

        div {
            /* background-color: #AB632B; */
            width: 267px;
            height: 32px;

            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .centerbtn{
        top: 30vh;
    }
    .btn-disable {
         background-image: url('/static/btn-disable.png');


    }

    .backto {
        position: absolute;
        bottom: 6.71875vh;
        display: flex;
        align-items: center;
        justify-content: center;

        height: 13px;
        font-size: 13px;
        font-weight: 500;
        line-height: 13px;
        text-align: center;
        color: black;


        svg {
            width: 14px;
            margin-right: 6.5px;
        }
    }


}

