* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'Acme';
    src: url('/woogi/0.1/static/gmsui/fonts/COMMONACME-REGULAR.TTF') format('truetype');
}

body {
    font-family: "Acme";
    background: rgba(135, 206, 250, 0.4);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#app{
    width: 95%;
    height: 50%;
    position: absolute;
    background-image: url("/woogi/0.1/static/gmsui/register_popup/imgs/BG_Popup.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#app .text-container {
    height: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

#app .input-container {
    width: 85%;
    margin: 0 auto;
    position: relative;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#app .input-container img {
    position: absolute;
    width: 100%;
}

#app .input-container input {
    position: absolute;
    outline: none;
    width: 88%;
    height: 100%;
    margin-top: 2%;
    left: 4%;
    border: 0;
    background: transparent;
    font-size: clamp(1rem, 3vw, 2.5rem);
    text-align: center;
}



#app .text-container p {
    width: 90%;
    margin: 0 auto;
    text-align: start;
    font-size: 2rem;
}

#app .btn-container {
    height: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#app .btn-container .btn {
    width: 40%;
    height: 60%;
    position: relative;
    cursor: pointer;
}

#app .btn-container .btn img {
    width: 100%;
    height: 100%;
    position: absolute;
}

#app .btn-container .btn p {
    position: absolute;
    color: white;
    -webkit-text-stroke: 0.1vw  black;
    width: fit-content;
    font-size: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.btn .loading-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: -12px;
    border: 3px solid rgba(255,255,255,0.6);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
    pointer-events: none;
    display: none;
}
.btn.pending .loading-spinner {
    display: block;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

.input-error {
    color: #ff3b3b;
    font-size: 1.2rem;
    margin: 0.5em auto 0 auto;
    width: 85%;
    text-align: center;
    min-height: 1.5em;
}

@media (orientation: landscape) and  (min-height: 360px) {
    #app{
        /* border: 1px solid red; */
        width: 75%;
        height: 75%;
        /*background-color: pink;*/
        position: absolute;
        background-image: url("/woogi/0.1/static/gmsui/register_popup/imgs/BG_Popup.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .btn-container .btn {
        width: 40%;
        height: 60%;
        position: relative;
    }

    #app .input-container {
        width: 85%;
        margin: 0 auto;
        position: relative;
        height: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .input-container img {
        position: absolute;
        width: 100%;
        height: 95%;
    }

    #app .input-container input {
        position: absolute;
        outline: none;
        width: 88%;
        height: 95%;
        margin-top: 0%;
        left: 4%;
        border: 0;
        background: transparent;
        font-size: clamp(1rem, 3vw, 2.5rem);
        text-align: center;
    }
}

@media (orientation: landscape) and  (min-width: 1024px) {
    #app{
        width: 60%;
        height: 65%;
        position: absolute;
        background-image: url("/woogi/0.1/static/gmsui/register_popup/imgs/BG_Popup.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .btn-container .btn {
        width: 40%;
        height: 60%;
        position: relative;
    }

    #app .btn-container .btn p {
        position: absolute;
        color: white;
        -webkit-text-stroke: 0.1vw  black;
        width: fit-content;
        font-size: 2.5rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
    }

    #app .input-container {
        width: 85%;
        margin: 0 auto;
        position: relative;
        height: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .input-container img {
        position: absolute;
        width: 100%;
    }

    #app .input-container input {
        position: absolute;
        outline: none;
        width: 88%;
        height: 100%;
        margin-top: 2%;
        left: 4%;
        border: 0;
        background: transparent;
        font-size: clamp(1rem, 3vw, 2.5rem);
        text-align: center;
    }
}


@media (orientation: landscape) and  (min-width: 1024px) {
    #app{
        /* border: 1px solid red; */
        width: 60%;
        height: 65%;
        /*background-color: pink;*/
        position: absolute;
        background-image: url("/woogi/0.1/static/gmsui/register_popup/imgs/BG_Popup.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .btn-container .btn {
        width: 40%;
        height: 60%;
        position: relative;
    }

    #app .btn-container .btn p {
        position: absolute;
        color: white;
        -webkit-text-stroke: 0.1vw  black;
        width: fit-content;
        font-size: 3.5rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
    }

    #app .input-container {
        width: 85%;
        margin: 0 auto;
        position: relative;
        height: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .input-container img {
        position: absolute;
        width: 100%;
    }

    #app .input-container input {
        position: absolute;
        outline: none;
        width: 88%;
        height: 100%;
        margin-top: 2%;
        left: 4%;
        border: 0;
        background: transparent;
        font-size: clamp(1rem, 3vw, 2.5rem);
        text-align: center;
    }
}

@media (orientation: landscape) and  (min-width: 1367px) {
    #app{
        /* border: 1px solid red; */
        width: 50%;
        height: 55%;
        /*background-color: pink;*/
        position: absolute;
        background-image: url("/woogi/0.1/static/gmsui/register_popup/imgs/BG_Popup.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .btn-container .btn {
        width: 40%;
        height: 60%;
        position: relative;
    }

    #app .btn-container .btn p {
        position: absolute;
        color: white;
        -webkit-text-stroke: 0.1vw  black;
        width: fit-content;
        font-size: 4rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);

    }

    #app .input-container {
        width: 85%;
        margin: 0 auto;
        position: relative;
        height: 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #app .input-container img {
        position: absolute;
        width: 100%;
    }

    #app .input-container input {
        position: absolute;
        outline: none;
        width: 88%;
        height: 100%;
        margin-top: 2%;
        left: 4%;
        border: 0;
        background: transparent;
        font-size: clamp(1rem, 3vw, 2.5rem);
        text-align: center;
    }
}

