/* body {
    background-color: #f5f5f5;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    background-color: #4285F4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#loginForm {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.hidden {
    display: none;
} */


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400;600;800&family=Nunito:wght@200;400;500;600;800&family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    /* font-family: 'Nunito', sans-serif; */
    font-family: 'Open Sans', sans-serif;
}

body {
    /* border: 1px solid blue; */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.mainBox {
    /* border: 1px solid red; */
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: absolute;
    z-index: 1;
}

.loader img {
    height: 50vh;
}

.leftBox {
    /* border: 1px solid green; */
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: #42266e;
}

.leftBox .title {
    color: #fa00e9;
}

.leftBox .intro {
    width: 90%;
    text-align: center;
    font-size: 1.35em;
    color: #fff;
}

.rightBox {
    /* border: 1px solid black; */
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginBox {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* width: 30rem; */
    width: 70%;
    padding: 3.5rem;
    box-sizing: border-box;
    border: 1px solid #dadce0;
    -webkit-border-radius: 8px;
    border-radius: 8px;

}

.loginBox h2 {
    /* margin: 0px 0 2.5rem; */
    margin-bottom: 6%;
    padding: 0;
    text-align: center;
    color: #202124;
    font-size: 36px;
    /* font-size: 24px; */
    /* font-weight: 400; */
    /* white-space: nowrap; */
}

.loginBox .logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 16px;
    pointer-events: none;

}

.loginBox p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: center;
}

.loginBox .inputBox {
    position: relative;
}

.loginBox .inputBox input {
    width: 100%;
    /* padding: 1rem 10px; */
    padding: 3.5% 4%;
    font-size: 1rem;
    letter-spacing: 0.062rem;
    /* margin-bottom: 1.875rem; */
    margin-bottom: 5%;

    border: 1px solid #ccc;
    background: transparent;
    border-radius: 4px;
    font-family: 'BentonSans';
    font-style: normal;
}

.loginBox .inputBox label {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: gray;
    pointer-events: none;
    transition: 0.2s;

}

.loginBox .inputBox input:focus~label,
.loginBox .inputBox input:valid~label,
.loginBox .inputBox input:active~label {
    top: -1.125rem;
    left: 10px;
    color: #1a73e8;
    font-size: 0.75rem;
    background-color: #fff;
    height: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

/* #emailField:valid #emailField~label{
    top: -1.125rem;
    
} */

.loginBox .inputBox input:focus {
    outline: none;
    border: 2px solid #1a73e8;
}

.loginBox input[type="submit"] {
    border: none;
    outline: none;
    color: #fff;
    background-color: #1a73e8;
    /* padding: 0.625rem 1.25rem; */
    padding: 2% 4%;
    cursor: pointer;
    border-radius: 0.312rem;
    font-size: 1rem;
    /* float: right; */
}

.loginBox input[type="submit"]:hover {
    background-color: #287ae6;
    box-shadow: 0 1px 1px 0 rgba(66, 133, 244, 0.45), 0 1px 3px 1px rgba(66, 133, 244, 0.3);
}

.forgotPasswordLink {
    color: blue;
    padding: 10px 0px;
    text-decoration: underline;
    font-size: 0.6em;
    cursor: pointer;
}

.userSelectNone {
    user-select: none;
}

@media only screen and (max-height: 578px) {
    .loginBox {
        width: 80%;
    }
}

@media (max-width:850px) {
    .leftBox {
        display: none;
    }

    .loginBox {
        width: 50%;
    }

    .logo img {
        width: 80%;
    }
}

@media (max-width:650px) {
    .leftBox {
        display: none;
    }

    .loginBox {
        width: 70vw;
        height: max-content;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .logo img {
        width: 70%;
    }

    .loginForm {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .loginBox .inputBox input {
        font-size: 0.8em;
    }

    .loginBox .inputBox label {
        font-size: 0.8em;

    }

    .loader img {
        height: 25vh;
    }
}

@media (max-width:420px) {
    .leftBox {
        display: none;
    }

    .loginBox {
        width: 80vw;
        height: max-content;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .logo img {
        width: 100%;
    }

    .loginForm {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .loginBox .inputBox input {
        font-size: 0.8em;
    }

    .loginBox .inputBox label {
        font-size: 0.8em;

    }

    .loader img {
        height: 25vh;
    }

    .loginBox input[type="submit"] {
        font-size: 0.8em;
    }

}