@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.form-container {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
}

h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

p {
  margin-bottom: 30px;
  color: #a0a0a0;
  font-size: 0.9em;
}

p a {
  color: #ff6f00;
  text-decoration: none;
  font-weight: 500;
}

p a:hover {
  text-decoration: underline;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

input,
select {
  width: 100%;
  padding: 15px 15px 15px 45px; /* Left padding for icon */
  background-color: #2c2c2c;
  border: 1px solid #444;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input::placeholder,
select {
  color: #888;
}

input:focus,
select:focus {
  outline: none;
  border-color: #ff6f00;
  box-shadow: 0 0 0 2px rgba(255, 111, 0, 0.2);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592c.859 0 1.32 1.013.754 1.658l-4.796 5.482a.5.5 0 0 1-.754 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

select option {
  background-color: #2c2c2c;
  color: #ffffff;
}

button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #ff8c00, #ff6f00);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  margin-top: 10px;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 111, 0, 0.3);
}
