/*style.css */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  height: 100vh;
  background-image: url(assets/background.jpeg);
  font-family: "Poppins", sans-serif;
  background-repeat: no repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
}

.textup {
  text-align: center;
  color: #162938;
  font-weight: 700;
}

i {
  margin-right: 3px;
}

.form-box {
  padding: 15px;
  border-radius: 8px;
  width: 500px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.5);
}

form {
  max-width: 400px;
  margin: 0 auto;
}

.radio-group {
  display: flex;
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  color: #162938;
  font-weight: 600;
  margin-bottom: 20px;
}

input,
textarea {
  width: 50%;
  padding: 8px;
  margin-bottom: 12px;
  box-sizing: border-box;
  border-radius: 10px;
}

button {
  background-color: #368b44;
  color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
  font-size: 15px;
  transition: 0.2s linear;
}

button:hover {
  background-color: #0a6808;
  border: none;
  transform: translateY(-10px);
}

h1 {
  color: #162938;
}

.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid #162938;
  margin: 30px 0;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #162938;
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: #162938;
  font-weight: 600;
  padding: 0 35px 0 5px;
}

.input-box .icon {
  font-size: 1.2em;
  color: #162938;
  line-height: 57px;
}