#office_area {
  height: 100vh;
  min-height: 500px;
  position: relative;
}
#office_area .main_body {
  position: relative;
  height: calc(100% - 30px);
  width: 100%;
  background: url(../images/community/community.png) bottom no-repeat;
  background-size: cover;
}
.form_container{
  width: 100%;
  height: 100%;
  /* display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center; */
}
.form_con{
  width: 100%;
  padding: 2rem;
  margin-top: 5rem;
  backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4rem;
  box-shadow: 0 44px 39px rgba(0, 0, 0, 0.36);
}
.form_title {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  line-height: 110.5%;
  margin-bottom: 1rem;
  text-align: center;
}
.form_con input{
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
}
.form_con button{
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  margin: 2rem 0;
  background-color: rgb(0, 0, 0);
  color: #fff;
}
.form_con p{
  text-align: center;
  color: #ebebeb;
}
.form_con .link{
  color: #ebebeb;
  text-decoration: underline;
}
.form_con .link:hover{
  color: #7ed2f5;
  text-decoration: underline;
}