* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
}
#root {
  max-width: 1920px;
  width: 100vw;
  border: #a19c9c 1px solid;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
}

/*  */
#container {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 35px;
}
#container_top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

h1 {
  padding: 0%;
  margin: 0%;
  font-size: 2rem;
}
#container_middle {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0px;
}

#id_info_form {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  width: 100%;
  gap: 10px;
}
.form_unit {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
  padding: 5px;
  border-radius: 10px;
  height: auto;
  /* border: 1px solid #8d2727; */
}
.form_field {
  display: flex;
  align-items: center;
  border: #d3cbcb solid 2px;
  border-radius: 8px;
  width: 100%;
  min-width: 300px;
  padding-left: 5px;
  /* border: 1px solid #8d2727; */
}

.form_field input[type="text"],
input[type="email"] {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  outline: none;
  /* border: 1px solid #8d2727; */
  font-size: medium;
}

.form_unit label {
  height: 20px;
  color: #000000;
  font-weight: bold;
  font-size: small;
}

#container_bottom {
  display: flex;
  gap: 20px;
}

.btn_move {
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 10px;
  font-size: large;
  border: none;
  text-decoration: none;
}
.btn_next {
  background-color: rgb(5, 202, 5);
}
.btn_back {
  background-color: rgb(175, 45, 5);
}

/* -------------------------------------------------------------------------------------------------- */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  #container {
    width: 100vw;
    height: auto;
    padding: 40px 15px;
    border-radius: 0px;
  }
  #id_info_form {
    grid-template-columns: auto;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  #container {
    /* background-color: aqua; */
    width: 100vw;
    height: auto;
    padding: 50px 20px;
    border-radius: 0px;
  }
  #id_info_form {
    grid-template-columns: auto;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #container {
    /* background-color: #0f9e3a; */
    width: 95vw;
    height: auto;
    margin: auto;
    padding: 20px 20px;
    border-radius: 20px;
  }
  #id_info_form {
    grid-template-columns: auto;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  #container {
    /* background-color: #caa811; */
    width: 90vw;
    height: auto;
    margin: auto;
    padding: 40px 30px;
    border-radius: 20px;
  }
  #id_info_form {
    grid-template-columns: auto auto;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  #container {
    /* background-color: #6e684b; */
    width: 85vw;
    height: auto;
    padding: 40px 30px;
    border-radius: 20px;
  }
  #id_info_form {
    grid-template-columns: auto auto;
  }
  #id_destinations {
    gap: 30px;
  }
  #container_middle {
    gap: 40px;
  }
}
