* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #042453;
}

.container {
  background: #ffffff;
  width: 380px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
}

.input-group input:focus {
  border-color: #6366f1;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

button {
  width: 100%;
  padding: 12px;
  background: #042453;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #4338ca;
}

.toggle {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.toggle-link {
  color: #4f46e5;
  cursor: pointer;
  font-weight: bold;
  margin-left: 5px;
}

.success {
  text-align: center;
  color: green;
  margin-top: 10px;
  display: none;
}

.password-toggle {
  font-size: 12px;
  color: #4f46e5;
  cursor: pointer;
  margin-top: 5px;
  display: inline-block;
}

#nameGroup {
  display: none;
}
