/* Password input */
input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #444;
  border-radius: 6px;
  font-size: 16px;
  background: #16213e;
  color: #eee;
  outline: none;
  transition: border-color 0.2s;
}

input[type="password"]:focus {
  border-color: #3498db;
}
