/* @font-face {
    font-family: 'ubuntu';
    src: url(/fonts/Ubuntu-Regular.ttf);
} */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Ubuntu", sans-serif;
}


body {
    background-color: #EAECEE;
}

.background {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

#box1 {
    background-color: #F6F4F4;
    width: 40vw;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 15px 15px 0;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    overflow: auto;
}

#box2 {
    background-color: #CD5700;
    width: 40vw;
    height: 70vh;
    border-radius: 15px 0 0 15px ;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.login {
    width: 80%;
    height: 55%;
    text-align: center;
}

#loginForm {
    display: block;

}

#box1 p {
    padding-left: 40px;
    padding-bottom: 50px;
    color: #CD5700;
    text-align: left;
    font-size: 45px;
    word-wrap: break-word
}

#loginForm label {
    text-align: left;
    display: block;
    color: black;
    font-size: 20px;
    font-weight: 400;
    padding-left: 60px;
    margin-bottom: 10px;
    word-wrap: break-word
}

#loginForm input[type="text"],
input[type="password"] {
    width: 25vw;
    height: 30px;
    margin-bottom: 8px;
    outline: none;
    border-radius: 5px;
    border-color: #CD5700;
    padding-left: 20px;
}


#loginForm button {

    width: 12vw;
    height: 40px;
    background-color: #CD5700;
    color: white;
    text-align: center;
    border-radius: 15px;
    margin-top: 20px;
}

#loginForm button:hover {
    background-color: #EAECEE;
    color: #CD5700;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

#box2 {
    text-align: center;
}


#box2 #logo {
    display: inline-block;
    margin-top: 30px;
    width: 15vw;
    height: auto;
}

#box2 #serp {
    padding: 0;
    width: 5vw;
    height: auto;
}

#box2 p {
    margin-top: 15px;
    margin-bottom: 15px;
    color: white;
    font-size: 30px;
    font-family: Ubuntu;
    font-weight: 500;
    word-wrap: break-word
}

#particles-js {
    z-index: -100;
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.particles-js-canvas-el {
    position: absolute;
}

@media (0px <=width <=720px) {


    .background {
        height: 100vh;
        display: grid;
        grid-template-rows: 30% 70%;
        align-items: start;
    }

    #box1 {
        
        background-color: transparent;
        width: 100%;
        height: auto;
        border-radius: 0;
        box-shadow: none;
        overflow: auto;
    }

    #box2 {
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        overflow: auto;

        display: grid;
        grid-template-rows: 40% 30% 30%;
        justify-items: center;
        align-items: center;
    }

    #box2 #logo {
        width: auto;
        height: 90%;
        margin-top: 0;
    }

    #box2 #serp {
        padding: 0;
        width: 7vw;
        height: auto;
    }

    #box2 p {
        margin-top: 15px;
        margin-bottom: 15px;
        color: white;
        font-size: 25px;
        font-family: Ubuntu;
        font-weight: 500;
        word-wrap: break-word
    }

    .login {
        width: 90%;
        text-align: center;
        background-color: #EAECEE;
    }


    #box1 p {
        padding-top: 5vh;
        padding-left: 0;
        text-align: center;
    }

    #loginForm label {
        padding-left: 10vw;
    }

    #loginForm input[type="text"],
    input[type="password"] {
        width: 80vw;
        height: 50px;
    }

    #loginForm button {
        width: 70vw; height: 50px;
    }

   
   

}