.login_Page {
    /*background: linear-gradient(205deg, rgba(2,0,36,1) 10%, rgba(51,51,51,1) 55%, rgba(0,212,255,1) 100%);*/
    /*background: linear-gradient(205deg, rgba(2,0,36,1) 10%, #3f51b5 55%, #00bcd4 100%);*/
    background: linear-gradient(267deg, rgb(2 0 36 / 82%) 0%, #3f51b5a8 60%, #00bcd469 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    align-content: center;
    justify-content: center;
}

.login-page-box{
    /* background-color: #bebec4; */
    margin: 10% auto;
    width: 300px;
    /* border: 3px solid #1b1b1c; */
    padding: 5px;
    border-radius: 5px;
}

.login-heading{
    height: 40px;
    margin-bottom: 10px;
    margin-top: 5px;
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.login-input-box{
   padding-left: 10px;
    font-size: 16px;
    height: 40px;
    margin-bottom: 10px;
    background-color: white;
    margin-top: 5px;
    width: 100%;
    border: 1px solid #ffffffb0;
}
.login-input-password-box{
    padding-left: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #000000;
    height: 40px;
    margin-bottom: 10px;
    background-color: #dbdcdd;
    margin-top: 5px;
    width: 100%;
}
.login-button-box{
   
    padding-left: 5px;
    font-size: 18px;
    border: 1px solid #f4bd11;
    height: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
    background-color: #f4bd11;
    color: #ffffff;
    cursor: pointer;

}

.login-logo{
    margin: 5% auto;
}

.login-error-text{
    text-align: center;
}

.loader {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.forgot-password {
    color: white;
    font-weight: 600;
    cursor: pointer;
}