* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #111;
  color: #fff;
  padding: 20px 20px;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.user-menu {
  position: relative;
}

.icon {
  font-size: 18px;
  cursor: pointer;
}

.with-icon {
  display: flex;
  align-items: center;
  gap: 18px; /* space between image and text */
}



.dropdown {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background: #fff;
  color: #000;
  border-radius: 6px;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: 260px;
  z-index: 1000;
  font-size: 14px;
}

.dropdown p {
  margin: 30px 0;
}

.dropdown .version {
  font-size: 12px;
  color: #555;
}

.dropdown.show {
  display: block;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.login-box {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid #dedfe3;
  width: 100%;
  max-width: 400px;
  min-width: 280px;
  box-sizing: border-box;
}

.login-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #222;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group input {
  width: 100%;
  padding: 15px 40px 15px 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  outline: none; /* Removes the default outline */
}

.input-group input:focus {
  border-color: blue; /* Changes the border color to blue when focused */
}

.input-group .eye-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
}

.hint-links {
  font-size: 14px;
  margin-bottom: 30px;
}

.hint-links a {

  margin-bottom: 45px;
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

.login-btn {
  font-weight: bold;
  width: 30%;
  padding: 10px;
  background: #ccc;
  color: #666;
  border: none;
  border-radius: 1px;
  cursor: not-allowed;
  transition: background 0.3s, color 0.3s;
}

.login-btn.enabled {
  background: #005bc1;
  color: #fff;
  cursor: pointer;
}

footer {
  font-size: 12px;
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  border-top: 1px solid #c4c6cf;
  width: 65%;
  margin: 0 auto;
}

footer a {
  color:#005bc1;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 5px;
}


    .Forgotpwd-box {
      background: #f8f8f8;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      width: 400px; 
      border: 1px solid #dedfe3;
    }
    .Forgotpwd-box h2 {
      margin-bottom: 15px;
      font-size: 24px;
      color: #333;
      text-align: left;
    }
    .Forgotpwd-box p {
      margin-bottom: 20px;
      font-size: 14px;
      color: #666;
      text-align: left;
    }
    .Forgotpwd-box div {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .Forgotpwd-box input {
      width: 40px;
      height: 50px;
      text-align: center;
      font-size: 18px;
      border: 2px solid #ccc;
      border-radius: 5px;
    }

    .Forgotpwd-box input:focus {
      outline: none;
    }

    .Forgotpwd-btn {
    width: 30%;
    padding: 10px;
    background-color: #ccc;
    color: #fff;
    border: none;
    border-radius: 1px;
    display: block; 
    margin-right: auto; 
  }
    .Forgotpwd-btn.enabled {
      background-color: #005bc1;
      cursor: pointer;
    }

      