@font-face {
  font-family: "gmarket_sans";
  src: url("/fonts/GmarketSansLight.otf"), format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "gmarket_sans_m";
  src: url("/fonts/GmarketSansMedium.otf"), format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
}


html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  background-color: #191c23;
}

header {
  background-color: #1b324d;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
}

.logo_area img {
  height: 60px;
  margin-left: 10px;
}

section {
  background-color: aliceblue;
  display: flex;
  justify-content: center;
}

.join_con {
  position: relative;
  background-color: white;
  width: 95%;
  height: 1200px;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 30px;
  flex: none;
}

.title,
.user_con,
.user_areeyment,
.finish_btn {
  width: 90%;
}

.title p {
  font-family: "gmarket_sans_m", sans-serif;
  color: black;
  font-size: 36px;
}

.user_con table,
tr,
td {
  font-family: "gmarket_sans", sans-serif;
  color: black;
  font-size: 15px;
  width: 100%;
  border-collapse: collapse;
}

.user_con tr td:first-child {
  width: 20%;
  padding: 20px;
  background-color: snow;
}

.user_con table tr {
  border-top: 1px solid gray;
}

.areey_style {
  font-family: "gmarket_sans_m", sans-serif;
  color: gray;
  padding: 15px 0;
}

.finish_btn {
  display: flex;
  justify-content: center;
}

.finish_btn button {
  width: 200px;
  height: 80px;
  background-color: #1b324d;
  border: none;
  border-radius: 10px;
  font-family: "gmarket_sans_m", sans-serif;
  font-size: 30px;
  color: white;
}

.input_style {
  background-color: rgb(235, 235, 235);
  border: none;
  margin-left: 20px;
  width: 50%;
  padding: 10px;
  border-radius: 5px;
  caret-color: black;
  outline: none;
  color: black;
}


@media (max-width: 500px) {
  .user_con table,
  tr,
  td {
    font-size: 10px;
  }
  .user_con tr td:first-child {
    width: 30%;
  }
  #input_style {
    width: 70%;
  }
}
