@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

:root {
    --color01: #368826;
    --color02: #F4408A;
}

a {
    text-decoration: none;
}

.head {
    text-transform: capitalize;
    color: #252c30;
    margin-bottom: 20px;
}

.head h2{
    font-weight: 300;
}

.head h2 span {
    font-weight: 600;
    margin-bottom: 20px;
}

/* Login */

.login{
    overflow: hidden;
}

.login #side-l {
    background-color: #EDEDED;
    height: 100vh;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.row.text-center {
    overflow: hidden !important;
}

.login {
    overflow: hidden;
}

.login h3 {
    font-family: 'Pacifico', cursive;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 35px;
}

.login .logo figure {
    height: 58px;
    width: 160px;
}

.login .logo figure img {
    height: 100%;
    width: 100%;
}

.login .logo {display: flex;justify-content: center;margin-bottom: 50px;}

.login .application {
    display: flex;
    justify-content: center;
}

.login #side-r {
    display: flex;
    align-items: center;
    position: relative;;
}

.login h2 {
    color: #222222;
    font-size: 32px;
    font-weight: bold;
}

.login p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    opacity: 0.5;
    padding-left: 5px;
    display: block;
    margin-bottom: 50px;
    font-size: 14px;
    color: #4D4F5C;
}

input[type="text"] {
    border: 0;
}

.login input {
    font-family: 'Poppins', sans-serif;
    border: 0;
    background-color: #F7F8F7;
    min-height: 40px;
    padding: 10px 30px;
    width: 396px;
    height: 55px;
    border-radius: 5px;
    font-size: 14px;
}

button[type="submit"] {
    border: 0;
    width: 396px;
    margin-top: 40px;
    min-height: 55px;
    background-color: #6FAD00;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.login a {
    font-family: 'Poppins', sans-serif;
    color: #191919;
    text-decoration: revert;
    text-align: center;
    display: block;
    font-size: 14px;
}

.login .footer p {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 11px;
}

#mobile-logo{
    display: none;
}


@media(max-width:1200px){

    .login figure{
        width: auto;
        height: auto;
    }

    .login figure img{
        width: 100%;
        height: 100%;
    }

}

@media(max-width:992px){
    .login input {
        width: 100%;
    }

    button[type="submit"] {
        width: 100%;
    }
}

@media(max-width:767.98px){
    .login input {
        width: 100%;
    }

    button[type="submit"] {
        width: 100%;
    }
}




@media(max-width:575.98px){
    .login #side-l{
        display: none;
    }

    .login .application {
        padding-bottom: 100px;
    }

    .login p {
        font-size: 12px;
        margin-bottom: 35px;
    }

    button[type="submit"] {
        margin-top: 30px;
        font-size: 16px;
    }

    .login input {
        font-size: 14px;
    }

    .login a {
        font-size: 14px;
    }

    #mobile-logo {
        display: flex;
    }

    .login {
        padding-top: 100px;
    }

    .login input {
        width: 100%;
    }

    button[type="submit"] {
        width: 100%;
    }
}





