* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

html,
body {
    height: 100%;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    background-color: #fff
}

body {
    font-family: "New Hero";
    font-weight: normal;
    font-style: normal;
    padding: 0px;
    margin: 0px auto;
    text-align: center;
    overflow-y: hidden;
    overflow-x: hidden
}

h1,
h2,
h2,
h3,
h4,
h5 {
    font-family: "New Hero"
}

h2 {
    font-weight: normal
}

.page {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-bottom: 20px;
    padding-top: 80px
}

.page-inner-wrap {
    width: 100%;
    height: 100%;
    transition: opacity .5s ease;
    opacity: 0
}

.logo {
    width: 100px;
    position: absolute;
    right: 30px;
    top: 30px
}

.login-title {
    font-size: 18px;
    margin-bottom: 30px
}

.register-link{
    padding: 20px;
    color: #000;
    font-size: 15px;
    margin-top: 10px;
}
.register-link a{
    /* display: block; */
    color: #000;
    /* text-decoration: none;
    margin-top: 10px;
    font-weight: bold;                    */
}
/* .register-link a:active{
    color: #000;
} */

.input-block {
    background-color: #30ea03;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.search-value {
    border: 0px solid #000;
    display: inline-block;
    padding: 10px;
    width: 100%;
    transition: outline .3s ease, border-width .5s ease
}

.search-value:focus {
    outline-color: #31bc0a
}

.error {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #c90101;
    opacity: 0;
    position: relative;
    transition: opacity .5s ease;
    margin-top: 5px;
    text-align: center;
    width: 100%;
    font-size: 14px
}

.show {
    opacity: 1 !important
}

.login-mode label {
    display: inline-block;
    color: green;
    cursor: pointer;
    transition: color .5s ease, background-color .2s ease;
    font-size: 15px;
    margin-bottom: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 10px
}

.login-mode label:active {
    background-color: #68f245
}

.login-mode label:last-child {
    margin-right: 0px
}

.login-mode input[type=radio] {
    display: none
}

.login-mode input[type=radio]:checked+label {
    color: #000
}

.content {
    position: relative;
    font-size: 20px
}

.button {
    background-color: #30ea03;
    padding: 10px 20px;
    color: #000;
    margin: 0px auto;
    font-size: 20px;
    display: inline-block;
    margin-top: 40px;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: width .5s ease, padding .5s ease
}

.button:active {
    background-color: #68f245
}

.load-button {
    display: inline-block;
    outline: none;
    transition: padding-right .3s ease, scale .3s ease
}

.load-button.spinning {
    padding-right: 40px
}

.load-button.spinning:after {
    content: "";
    right: 6px;
    top: 50%;
    width: 0;
    height: 0;
    position: absolute;
    border-radius: 50%;
    animation: rotate360 .5s infinite linear, exist .1s forwards ease
}

.load-button.spinning:before {
    content: "";
    width: 0px;
    height: 0px;
    border-radius: 50%;
    right: 6px;
    top: 50%;
    position: absolute;
    border: 2px solid #000;
    border-right: 3px solid #27ae60;
    animation: rotate360 .5s infinite linear, exist .1s forwards ease
}

.shaked {
    animation: shake .2s;
    animation-iteration-count: 4
}

@keyframes rotate360 {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes exist {
    100% {
        width: 15px;
        height: 15px;
        margin: -8px 5px 0 0
    }
}

@keyframes shake {
    0% {
        margin-left: 0rem
    }

    25% {
        margin-left: .5rem
    }

    75% {
        margin-left: -0.5rem
    }

    100% {
        margin-left: 0rem
    }
}

.roi {
    background-color: #000;
    background-image: url("../images/rotate-indicator.webp");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px 100px;
    display: none
}

@media(orientation: landscape) {
    .page {
        display: none !important
    }

    .roi {
        display: block !important
    }
}