body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.wh {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wh::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(35deg, rgb(111, 110, 170) 20%, rgb(177, 96, 96) 50%, rgb(211, 81, 200) 90%); */
    background-image: url('../images/b2.jpg');
    background-size: cover;
    background-position: center center;
    filter: blur(3px);
    transform: scale(1.02)
    /* filter: hue-rotate(45deg);/
    animation: animate 10s linear infinite; */
}
/* 
@keyframes animate {
    0% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(180deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
} */

.wh .sec {
    position: relative;
    width: auto;
    height: auto;
}

.sec::before {
    content: '';
    width: auto;
    height: auto;
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 15%, transparent 50%, transparent 85%,
            rgba(255, 255, 255, 0.3) 100%);
}

.box-stlye {
    position: relative;
    background: #00000020;
    float: right;
}

.field input {
    background-color: transparent;

}

.field input::placeholder {
    color: #fff;

}

.field input[type='text'],
.field input[type='email'],
.field input[type='password']
{
    color: #fff;
}

.level-item span {
    width: 55px;
    text-align: center;
    letter-spacing: 2px;
    cursor: pointer;
}

