/*****************************************************************/
/**** web site css ***/
@import url('https://fonts.cdnfonts.com/css/graphik-trial');

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

html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

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

body{
    width: 100%;
    height: 100%;
    background-color: #FF0000;
    font-family: 'Graphik Trial', sans-serif;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-x: hidden;
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.login{
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background: url('../img/login/login_bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0%;
}

div.img_part{
    position: absolute;
    left: 13%;
    bottom: 30%;
    z-index: 1;
}

div.form_part{
    position: absolute;
    width: 60%;
    height: 100vh;
    background-color: #fff;
    border-radius: 30px 0px 0px 30px;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.form_part div.content{
    width: 70%;
    height: 70vh;
}

div.form_part .content h1{
    font-size: 40px;
    font-weight: bold;
    color: #3D3B3B;
}

.button{
    background-color: #3D439E !important;
    height: 50px;
}

input{
    height: 50px;
}

div.form-group{
    position: relative;
    padding-top: 12px;
}

div.form-group label{
    position: absolute;
    background-color: #fff;
    color: #808080;
    padding: 0px 15px;
    top: 0;
    left: 15px;
}

div.another_account p span a, form p span a{
    text-decoration: none;
    margin-left: 10px;
    color: #3D439E;
    font-size: 13px;
    font-weight: 600;
}

button[type=submit]{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}


/************** Responsive design ********************/
@media (max-width: 1600px) {
    div.img_part{
        left: 5%;
    }

    img.logo{
        height: 400px;
    }
  }

@media (max-width: 1400px) {
    div.img_part{
        left: 5%;
    }

    img.logo{
        height: 400px;
    }
  }

  @media (max-width: 1200px) {
    div.img_part{
        left: 0%;
    }

    img.logo{
        height: 350px;
    }
  }


@media (max-width: 992px) {
    div.img_part{
        left: 0;
    }

    img.logo{
        height: 300px;
    }
  }


@media (max-width: 850px) {
    div.img_part{
        display: none;
    }

    div.form_part .content h1{
        font-size: 30px;
    }

    div.form_part .content h1{
        font-size: 30px;
    }

    div.form_part{
        width: 95%;
    }

    div.form_part div.content{
        width: 90%;
    }
  }

  @media (max-width: 576px) {
    div.img_part{
        display: none;
    }

    div.form_part .content h1{
        font-size: 30px;
    }

    div.form_part{
        width: 96%;
    }

    div.form_part div.content{
        width: 90%;
    }
  }
