/* MAIN IMAGE */

.LoginRightImage{
    height: 100vh;
}


/* LOGIN FORM */

.LoginContent{
    display: flex;
    justify-content: center;
    align-items: center;
}
.LoginFormLogo{
    display: flex;
    justify-content: center;

}
.LoginFormLogoImg{
    width: 350px;
}
.LoginHeading{
    color:  #4c8493;
    font-size: 40px;
    font-weight: bold;
    margin-top: 10%;
    display: flex;
    justify-content: center;
}
    .LoginSubHeading {
        font-size: 16px;
        font-weight: bold;
        display: flex;
        margin-bottom: 20px;
        color: #4b4b4b;
    }
.LoginInput{
    margin-top: 10%;
}
.LoginInputField{
    display: flex;
    justify-content: center;
    border: 1px solid rgb(193, 193, 193) !important;
    border-radius: 4px;
    width: 30rem;
    height: 55px;
    padding: 10px;
}

.LoginInputField::placeholder{
    color: #d4d4d4;

}
.LoginForgotPass{
    color: #001F5F;
    font-size: 14px;
font-weight: 400;
text-decoration: none;
}
.SignInButton{
    background-color: #001F5F;
    width: 50%;
    border: none;
    color: white;
    border-radius: 6px;
    padding: 10px;

}
.LoginFormFooter{
    margin-top: 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ERROR MESSAGE */

.ErrorText{
color: red;
list-style-type: none;
margin-top: -18px;
padding: 0;
}

/* MEDIA QUERY */

@media only screen and (max-width: 1100px) {
    .LoginRightImage {
      width: 100%;
    }
  }
  @media only screen and (max-width: 767px) {
    .LoginRightImage {
      display: none;
    }
    .LoginContent {
        margin-top: 20%;

    }
    .LoginLeftEndLogo{
        display: none !important;
    }
    .LoginLeftContent{
        display: none !important;
    }
    .LoginNewUser{

        top:200px;
        right: 100px;
        color: black !important;
        text-decoration: none !important;
        font-size: 14px;
      }
      .LoginLeftContent{
        top: 5%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-around;
      }

  }
@media only screen and (max-width: 1100px) {
    .LoginFormLogoImg{
        margin-top: 20%;
        width: 250px;
    }
    .LoginHeading{
        font-size: 30px;
    }
    .LoginSubHeading{
        font-size: 14px;
    }
    .LoginInputField{
        width: 100%;

    }
    .LoginForgotPass{
        font-size: 12px;
    }
  }


  /* COMMON */

.row>* {
    padding-right:0px;
    padding-left:0px;
}
.row {
    --bs-gutter-x: 0rem;
    --bs-gutter-y: 0;
}















.LoginLeftImage{
    width: 100%;
    height: 100vh;
    position: relative;
  }
  .LoginLeftPage{
    position: absolute;
top: 0px;
height: 100vh;
display: flex;
margin-left: 40px;
  }
  .LoginLeftLogo{
    position: absolute;
    top: 40px;
  }
  .LoginLeftContent{
    position: absolute;
    top: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
  }
  .LoginLeftEndLogo{
    position: absolute;
   bottom: 30px;
  }
  .LoginForm{
    display: flex;
    justify-content: center;
    flex-direction: column;

  }
  .SigninHeading{
    font-size: 20px;
  }
  .LoginNewUser{
    position: absolute;
    top:50px;
    right: 100px;
    color: black !important;
    text-decoration: none !important;
    font-size: 14px;
  }


