#root {
  min-width: 100vw;
  min-height: 100vh;
  background-color: #272727;
  color: #fff;
  overflow: auto;
}
.container {
  position: relative;
  min-height: 100vh;
}
.close_btn {
  position: fixed;
  z-index: 9;
  right: 50px;
  top: 50px;
}
.from_part {
  z-index: 2;
  max-width: 800px;
  padding-top: 150px;
  padding-bottom: 100px;
}
.from_title {
  font-size: 60px;
  font-weight: bold;
  padding-bottom: 50px;
}
.from_des {
  font-size: 24px;
  font-weight: lighter;
  padding-bottom: 130px;
}
.from_part_name {
  font-size: 17px;
  font-weight: bold;
  color: #999999;
  letter-spacing: 1px;
  padding-bottom: 50px;
}
.from_tags {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 70px;
}
.tag_item {
  padding: 10px 20px;
  background-color: #272727;
  border: 1px solid #fff;
  border-radius: 30px;
  margin-right: 30px;
  line-height: 16px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  transform-origin: background-color color border-color;
  user-select: none;
}
.tag_item.active {
  background-color: #2ba0e3;
  color: #fff;
  border-color: #2ba0e3;
}
.from_item_box {
  align-items: center;
  display: flex;
}
.from_item_box > .from_item {
  width: 45%;
}
.from_item_box > .from_item:first-child {
  margin-right: 10%;
}
.from_item {
  position: relative;
  border-bottom: #515151 solid 1px;
  padding-bottom: 30px;
  margin-bottom: 100px;
}
input::placeholder {
  color: #666666;
  font-weight: lighter;
}
textarea:focus,
input:focus {
  outline: none;
}
input {
  width: 100%;
  top: 0;
  position: absolute;
  background-color: unset;
  color: #999;
  font-size: 16px;
  border: unset;
  resize: none;

}
/* select_input */
.select_input{
  cursor: pointer;
}
.select_pop{
  position: absolute;
  z-index: 2;
  background-color: #272727;
  border: 1px solid #fff;
  width: 100%;
  top: 30px;
  opacity: 0;
  transform: translateY(10%);
  transition: .3s ease;
  transform-origin:opacity transform;
  pointer-events: none;
}
.select_pop.active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: unset;
}
.select_pop>.select_item{
  padding: 10px;
  cursor: pointer;
}
.select_pop>.select_item:hover{
  background-color: #2ba0e3;
}
/* select_input  END*/

.from_btn{
    user-select: none;
}
.from_btn > p {
  cursor: pointer;
  display: block;
  border: 2px #519ede solid;
  border-radius: 30px;
  width: 250px;
  height: 60px;
  line-height: 59px;
  text-align: center;
  transition: 0.3s ease;
  transform-origin: background-color color;
  background-color: #272727;
}
.from_btn > p:active {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

@media screen and (max-width: 767px) {
  #root {
    padding: 0 20px;
  }
  .close_btn {
    top: 20px;
    right: 20px;
  }
  .from_part {
    padding-top: 100px;
  }
  .from_item {
    margin-bottom: 50px;
  }
  .from_title {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .from_des {
    padding-bottom: 70px;
  }
  .from_part_name {
    padding-bottom: 15px;
  }
  .from_tags {
    padding-bottom: 40px;
  }
  .tag_item {
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 8px 20px;
  }
  .from_btn {
    /* position: fixed; */
    width: 100%;
    padding: 0 20px;
    left: 0;
    bottom: 20px;
  }
  .from_btn > p {
    width: 100%;
  }
}
