body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  background-color: #12122e;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.login-form label {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.login-form label i {
  margin-right: 8px;
}

.login-form input {
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 6px;
  background-color: #29294d;
  color: #fff;
  font-size: 14px;
}

.login-form input:focus {
  outline: none;
  background-color: #383864;
}

.login-form button {
  background: linear-gradient(to right, #5f2eea, #825ee4);
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background: linear-gradient(to right, #6a39e2, #937ef5);
}

.login-form p {
  color: #aaa;
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
}

.login-form p a {
  color: #7c84ff;
  text-decoration: none;
}

.login-form p a:hover {
  text-decoration: underline;
}
.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.input-group input {
  width: 100%;
  box-sizing: border-box;
}
