@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(180deg, #000, #1a1a1a);
  color: white;
}

.wrapper {
  background: linear-gradient(35deg, #ff8800, #6e95ff);
  border-radius: 15px;
  padding: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  min-width: 400px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

label {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0 5px;
  display: block;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 16px;
  color: white;
  font-weight: 400;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.2);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

button {
  width: 100%;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button:hover {
  background-color: white;
  color: #ff8800;
  border-color: white;
}

button:hover box-icon {
  fill: #ff8800;
}

small {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  opacity: 0.8;
}

textarea {
  resize: none;
}
