
#employee_login{
  background: url('../../img/www.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}


#employee_login a {
    text-decoration: none;
}
#employee_login .login-page {
    width: 100%;
    height: 100vh;
    display: inline-block;
    display: flex;
    align-items: center;

}

#employee_login .form-color{
background: rgba(255, 255, 255, 0.23);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

#employee_login .logo-color{
background: rgba(255, 255, 255, 0.23);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}


#employee_login .form-right i {
    font-size: 100px;
}

/*otp verified*/
     #otp {
      font-family: 'Poppins', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      color: #e0e0e0;
      background-image: 
          radial-gradient(circle at 25% 25%, rgba(166, 86, 246, 0.1) 2%, transparent 0%),
          radial-gradient(circle at 75% 75%, rgba(102, 101, 241, 0.1) 2%, transparent 0%);
      background-size: 60px 60px;
  }

#otp .otp-container {
      background-color: rgba(30, 30, 30, 0.8);
      padding: 3rem;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      text-align: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-width: 400px;
      width: 100%;
  }
  #otp h1 {
      margin-bottom: 1.5rem;
      color: #ffffff;
      font-weight: 600;
      font-size: 2rem;
  }
  #otp p {
      margin-bottom: 2rem;
      color: #b0b0b0;
      font-weight: 300;
  }
  #otp .otp-input {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
  }
 #otp .otp-input input {
      width: 50px;
      height: 50px;
      margin: 0 8px;
      text-align: center;
      font-size: 1.5rem;
      border: 2px solid #6665F1;
      border-radius: 12px;
      background-color: rgba(42, 42, 42, 0.8);
      color: #ffffff;
      transition: all 0.3s ease;
  }
  #otp .otp-input input:focus {
      border-color: #A556F6;
      box-shadow: 0 0 0 2px rgba(166, 86, 246, 0.3);
      outline: none;
  }
  #otp .otp-input input::-webkit-outer-spin-button,
  .otp-input input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }
  .otp-input input[type=number] {
      -moz-appearance: textfield;
  }
  #otp button {
      background: linear-gradient(135deg, #6665F1, #A556F6);
      color: white;
      border: 2px solid #6665F1;
      padding: 12px 24px;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      margin: 5px;
      transition: all 0.3s ease;
      font-weight: 500;
      letter-spacing: 0.5px;
  }
  #otp button:hover {
      background: linear-gradient(135deg, #A556F6, #6665F1);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(166, 86, 246, 0.3);
  }
  #otp button:disabled {
      background: #cccccc;
      border-color: #999999;
      color: #666666;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
  }
  #otp #timer {
      font-size: 1rem;
      color: #A556F6;
      font-weight: 500;
      margin-left: 10px;
  }
  @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.5; }
      100% { opacity: 1; }
  }
 #otp .expired {
      animation: pulse 2s infinite;
      color: #ff4444;
  }
 #otp .resend-text {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: #b0b0b0;
  }
  #otp.resend-link {
      color: #6665F1;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s ease;
  }
#otp  .resend-link:hover {
      color: #A556F6;
      text-decoration: underline;
  }
 #otp #email {
      color: #fff;
      font-weight: 500;
  }
