* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-image: url("images/Bg\ Image.jpg");
  width: 100%;
  height: 100%;
  background-size: cover;
}

.form {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 366px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 30px 30px 5px 30px;
  box-shadow: 0px 5px 20px 10px rgba(0, 0, 0, 0.2);
}

.form header {
  font-size: 24px;
  font-weight: 600;
}

.form form {
  margin: 30px 0;
}

form .field {
  width: 100%;
  margin-bottom: 15px;
}

form .field .input-area {
  position: relative;
}

form input {
  height: 40px;
  width: 100%;
  outline: none;
  padding: 0 15px;
  padding-left: 40px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #34495e;
  border-bottom-width: 2px;
}

form input::placeholder {
  color: #bfbfbf;
  font-size: 16px;
}

form .field i {
  position: absolute;
  top: 50%;
  font-size: 16px;
  pointer-events: none;
  transform: translateY(-50%);
}

form .field .icon {
  left: 15px;
  color: #34495e;
}

form .radio_btn {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  font-weight: 400;
}

form input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0 10px;
}

form .select-btn {
  margin-top: 15px;
}

form select {
  height: 40px;
  width: 100%;
  outline: none;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #34495e;
  border-bottom-width: 2px;
  font-size: 16px;
}

form input[type="submit"] {
  margin-top: 20px;
  border: none;
  background: #34495e;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
}

form input[type="submit"]:hover {
  background: #333867;
}

@media (max-width: 768px) {
  .form {
    width: 315px;
    padding: 15px;
    left: 50%;

  }

  .form header {
    font-size: 18px;
    font-weight: 600;
  }

  form input {
    height: 35px;
    font-size: 11px;
  }

  form input::placeholder {
    font-size: 12px;
  }

  form input[type="radio"] {
    width: 13px;
    height: 13px;
  }

  form .radio_btn {
    font-size: 12px;
  }

  form select {
    font-size: 12px;
  }

  form .field i {
    font-size: 14px;
  }

  form select {
    height: 35px;
    font-size: 14px;
  }

  form input[type="submit"] {
    height: 35px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .form {
    width: 268px;
    padding: 0px 20px;
    padding-top: 20px;
  }

  form input {
    height: 30px;
    font-size: 12px;
  }

  form input::placeholder {
    font-size: 10px;
  }

  form input[type="radio"] {
    width: 10px;
    height: 10px;
  }

  form .radio_btn {
    font-size: 10px;
  }

  form select {
    font-size: 10px;
  }

  form .field i {
    font-size: 12px;
  }

  form select {
    height: 30px;
    font-size: 12px;
  }

  form input[type="submit"] {
    height: 30px;
    font-size: 10px;
  }
}