#tutorial_cnt>h3 {
    width: 92%;
    margin: 20px auto;
    color: #f9d40a;
    font-size: 28px
}

#tutorial_cnt>p {
    width: 92%;
    margin: 30px auto;
    line-height: 40px;
    color: #b9b9bb;
}

#tutorial_cnt>form {
    background: #0b1d31;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 92%;
    direction: rtl;
    padding: 0 5px;
    padding-top: 100px;
    padding-bottom: 10px;
    margin: 10px auto;
    border-radius: 5px;
    overflow: hidden;
}

#tutorial_cnt>form>span {
    background: #f9d40a;
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    color: #0b1d31;
    text-align: center;
    line-height: 340px;
    font-weight: bold;
    font-size: 1rpx;
}

#tutorial_cnt>form>div {
    position: relative;
    flex-grow: 3;
    width: 25%;
    height: auto;
    margin: 10px 5px;
}

#tutorial_cnt>form>div>label {
    display: block;
    width: 100%;
    height: 30px;
    padding-right: 10px;
    color: #f9d40a;
    line-height: 30px;
    text-align: right;
}

#tutorial_cnt>form>div>input {
    display: block;
    width: 100%;
    height: 40px;
    border-bottom: solid 1px #f9d40a;
    color: #b9b9bb;
}

#tutorial_cnt>form>div>input:focus {
    border-width: 3px;
}

#tutorial_cnt>form>div>input.rtl {
    text-align: right;
    direction: rtl;
}

#tutorial_cnt>form>div>input.ltr {
    text-align: left;
    direction: ltr;
}

#tutorial_cnt>form>div>input.has-icon {
    padding-left: 40px;
}

#tutorial_cnt>form>div>i {
    position: absolute;
    top: 30px;
    left: 0;
    width: 40px;
    height: 40px;
    color: #f9d40a;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
}

#tutorial_cnt>form>div>span {
    display: block;
    width: 100%;
    padding-right: 10px;
    direction: rtl;
    line-height: 35px;
    color: red;
    font-size: 14px;
}

#tutorial_cnt>form>div>button {
    border: solid 1px #f9d40a;
    display: flex;
    flex-wrap: wrap;
    width: 120px;
    height: 40px;
    border-radius: 5px;
    margin-right: auto;
    margin-top: 10px;
}

#tutorial_cnt>form>div>button:hover, #tutorial_cnt>form>div>button:hover>i, #tutorial_cnt>form>div>button:hover>span {
    color: #b9b9bb;
    border-color: #b9b9bb;
}

#tutorial_cnt>form>div>button>i, #tutorial_cnt>form>div>button>span {
    height: 39px;
    color: #f9d40a;
    line-height: 39px;
}

#tutorial_cnt>form>div>button>i {
    width: 39px;
    font-size: 20px;
    line-height: 39px;
}

#tutorial_cnt>form>div>button>span {
    width: calc(100% - 40px);
    font-size: 12px;
}

#tutorial_cnt>form>label {
    position: relative;
    display: flex;
    flex-grow: 2;
    flex-shrink: 2;
    width: 45%;
    height: 40px;
    margin: 10px;
    cursor: pointer;
}

#tutorial_cnt>form>label>i {
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 8px;
    border: solid 1px #f9d40a;
    border-radius: 5px;
}

#tutorial_cnt>form>label>span {
    width: calc(100% - 40px);
    height: 40px;
    color: #f9d40a;
    text-align: right;
    line-height: 40px;
    font-size: 14px;
}

#tutorial_cnt>form>label>input:checked~i:after {
    content: '';
    background: #f9d40a;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

@media screen and (max-width: 575.98px) {
    #tutorial_cnt>form {
        padding-top: 50px;
        justify-content: center;
    }
    #tutorial_cnt>form>span {
        width: 100%;
        height: 40px;
        top: 0;
        left: 0;
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        line-height: 40px;
    }
    #tutorial_cnt>form>div {
        width: 100%;
        margin: 10px 0px;
    }
    #tutorial_cnt>form>label {
        width: 100%;
        margin: 20px 5px;
        justify-content: space-between;
    }
    #tutorial_cnt>form>label>span {
        line-height: 30px;
    }
    #tutorial_cnt>form>div>button {
        margin-left: 5px;
    }
}

#success_msg {
    background: rgb(11 29 49 / .5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#success_msg.hide {
    display:none;
}

#success_msg>p {
    background: #f9d40a;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: auto;
    padding: 20px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    border-radius: 5px;
    line-height: 40px;
}

@media screen and (max-width: 575.98px) {
    #success_msg>p {
        width: 300px;
    }
}