.loginMain{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-size: 1rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%), url(../../public/adminLogin.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.loginCont{
    width: 100%;
    max-width: 350px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
}
.loginLogo{
    width: 80%;
    height: auto;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginForm{
    width: 90%;
    display: flex;
    flex-direction: column;
}
.inputBox {
    position: relative;
    width: 100%;
    display: flex;
    margin: 20px 0;
}
.inputBox.active-grey .input1 {
    outline: 1px solid #dadce0;
  }
  .inputBox.active-grey .inputLabel {
    color: #80868b;
    top: -8px;
    background: #fff;
    font-size: 1rem;
    transition: 250ms;
  }
  .inputBox .inputLabel {
    position: absolute;
    color: #80868b;
    font-size: 1rem;
    font-weight: 500;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 15px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
  }
  .inputBox .input1 {
    box-sizing: border-box;
    border: 1px solid transparent;
    min-height: 50px;
    width: 100%;
    color: #202124;
    outline: 1px solid #dadce0;
    padding: 13px 15px;
    transition: 250ms;
    resize: none;
    font-size: 1rem;
    font-weight: 500;
  }
  .inputBox .input1[type="password"]{
    font-weight: 600;
  }
  .inputBox .input1:focus {
    outline: none;
    outline: 2px solid #000000;
    transition: 250ms;
  }
  .inputBox.error .inputLabel {
    color: #f44336;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
  }
  .inputBox.error .input1 {
    outline: 2px solid #f44336;
  }
  .inputBox.focus .inputLabel,
  .inputBox.active .inputLabel {
    color: #000000;
    top: -9px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
  }
  
  .inputBox.active .input1 {
    outline: 2px solid #000000;
  }
  .pull-right {
    float: right;
  }
  
  .clear {
    clear: both;
  }
  .loginBtn{
    width: 100% !important;
    padding: 10px;
    margin: 20px 0 15px 0;
  }
  .loginBtn:hover{
    color: #f44336;
    background-color: transparent;
    border-color: #f44336;
  }
  .loginDesc{
    font-size: 0.75rem;
    font-weight: 500;
    width: 86%;
    padding: 0 0px 30px 0px;
  }
  