

.custom-login-form
{
    text-align:center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
background: rgb(67,87,208);
background: linear-gradient(45deg, rgba(67,87,208,1) 0%, rgba(200,80,195,1) 100%);
     box-sizing:border-box;
    background-image: url("../images/roadbp.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.logintitsyl
{
    font-size:28px;
    font-weight:600;
   
}


.containerinnerbox

{

      padding: 40px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(15px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
      text-align: center;
      color: #fff;
      margin:0 auto;
}

.custom-login-form table
{
    border:none;
    
    border-radius:9px;
    
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Input submit button styles */
.custom-login-form input[type="submit"] {
   
    color: #fff;
    padding: 15px 30px 15px 30px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    width:80%;
    font-size:18px;
   background:rgba(255, 255, 255, 0.1);
  transition-duration: 0.6s;
margin-top:20px;
    
}


.custom-login-form input[type="submit"]:hover {
    background-color: #fff;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    color:#000;
}


.bcksit
{
     color: #000;
    padding: 15px 30px 15px 30px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    width:80%;
    font-size:18px;
   background:rgba(255, 255, 255, 0.1);
  transition-duration: 0.6s;
margin-top:20px;
text-decoration:none;
font-size:12px;
}

.lost-password
{
    color:#7f7f7f;
    padding:10px;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="Password"] {
    
    color: #000;
    
    border:none ;
    border-radius: 9px;
    outline:none;
    width:80%;
     background-color: rgba(0, 0, 0, 0.2);
    gap: 20px;
}

   .custom-login-form input
        {
            padding:13px;
            
            margin-bottom:5px;
            
            
        }


.login-error {
    position: absolute;
    margin-top: -650px;
    background-color: #fff;
    border-radius: 9px;
    padding: 20px;
    color: #ff7b7b;
}
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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


