body {
  background: #0f0f1c;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.wrapper {
  width: 100%;
  max-width: 1100px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.login-box {
  background: #1a1a30;
  padding: 25px 25px 30px;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px;
  margin-bottom: 20px;
}

.login-box h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 30px;
}

input,
button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
}

input {
  background: #333;
  color: white;
}

button {
  background: linear-gradient(135deg, #6cd7f6, #3555e1, #7e42ef, #db5aea);
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  filter: brightness(1.1);
}

.message {
  margin-top: 10px;
  color: #ff3b3f;
  font-weight: bold;
  text-align: center;
}

.owner {
  width: 100%;
}

.three-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.three-boxes .login-box {
  flex: 1;
}

@media (max-width: 900px) {
  .three-boxes {
    flex-direction: column;
  }
}

/* Show/Hide inside password input */
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 0 55px 0 12px;
  font-family: '29LT Bukra', sans-serif;
  font-size: 14px;
  background: #333;
  color: white;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  font-family: '29LT Bukra', sans-serif;
}

.toggle-password:hover {
  color: #fff;
  text-decoration: underline;
}
