.login-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 36px;
  margin: 56px auto;
  max-width: 470px;
  border-radius: 26px;
  border: 1px solid rgba(48, 44, 40, 0.08);
  box-shadow: 0 26px 54px rgba(98, 69, 31, 0.12);
  text-align: center;
}

.login-title {
  font-size: 28px;
  font-weight: 800;
  color: #2b211b;
  margin-bottom: 6px;
}

.login-sub {
  font-size: 14px;
  color: #786f67;
  margin-bottom: 24px;
  line-height: 1.6;
}

.input-group {
  text-align: left;
  margin-bottom: 18px;
}

label,
.input-group label {
  font-weight: 700;
  color: #3b312c;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

input,
#departmentSelect {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(48, 44, 40, 0.12);
  font-size: 15px;
  background: #fffdf9;
  appearance: none;
  outline: none;
  transition: 0.2s ease;
}

input:focus,
#departmentSelect:focus {
  border-color: #cc5a17;
  box-shadow: 0 0 0 4px rgba(204, 90, 23, 0.12);
}

.btn-primary {
  width: 100%;
  padding: 13px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #cc5a17, #e07a2e);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(204, 90, 23, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.error {
  display: none;
  color: #d53c2f;
  font-size: 13px;
  margin-top: 5px;
}

.password-wrap {
  position: relative;
  width: 100%;
}

.password-wrap input {
  width: 100%;
  padding-right: 42px;
}

.toggle-eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.65;
  user-select: none;
}

.toggle-eye:hover {
  opacity: 1;
}
