body {
    margin: 0;
    padding: 0;
    /* background: url('images/AcademyImg.Jpg') no-repeat;
       background-size: cover; */
    font-family:sans-serif;
  }
body::after {
  content: "";

  background: url('../images/ResturantPct.png') no-repeat;
  background-size: cover;
  align-items:center;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}

.loginbox{
    position:absolute;
    top:50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width:350px;
    height:420px;
    padding: 80px 40px;
    box-sizing:border-box;
    background: rgba(0,0,0,0.5);
     
}
.user{
    width:100px;
    height:100px;
    overflow: hidden;
    top: calc(-100px/2);
    left: calc(50% - 50px);
    position:absolute;
}
h2{
    padding:0;
    margin:0;
    text-align:center;
    color: #63b8e2;
    font-size:x-large;
}
.lblusername, .lblpass{
    font-weight: bold;
    font-size: large;
    color: rgb(198, 181, 118);
        }
.txtusername, .txtpass, .btnsubmit{
    width: 100%;
    margin-bottom: 20px;
}
.txtusername, .txtpass{
    border:none;
    border-bottom: 3px solid #fff;
    outline:none;
    height:30px;
    color:#fff;
    font-size:16px;
    background-color: transparent;

    }
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #acdbd8;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #acdbd8;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #acdbd8;
}
.btnsubmit{
    border:none;
    outline:none;
    height:40px;
    font-size:16px;
    color:#fff;
    background-color: #ff6a00;
    cursor:pointer;
    border-radius:20px;
    transition: .3s ease-in-out;

}
.btnsubmit:hover{
    background-color:rgb(255, 217, 9);

}
.btnforget{
    font-size:16px;
    font-weight:700;
    text-decoration: none;
    color:#fff;
    }
.btnforget:hover{
    text-decoration:underline;
    color:#63b8e2;
}


