/* CONTACT */
#contact {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 100px 50px 50px 50px;
}

/* .contact_left, .contact_right {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 20px;
        box-sizing: border-box;
    } */

.contact_left {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

#contact_main_text {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff914d;
  font-size: 28px;
  text-align: center;
  z-index: 10;
}

.contact_left p {
  margin: 15px 0 5px 0;
  font-size: 14px;
}

.contact_left textarea {
  width: 100%;
  height: 40px;
  border: 2px solid #ff914d;
  background: #111;
  color: white;
  font-family: "Press Start 2P", system-ui;
  padding: 5px 10px;
  resize: none;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact_left textarea:last-of-type {
  height: 100px;
}

.contact_hearts_img {
  width: 60px;
  margin-right: 10px;
}

.contact_hearts_row {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
}

.contact_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.contact_input {
  width: 300px;
  height: 40px;
  border: 2px solid #ff914d;
  background: #111;
  color: white;
  font-family: "Press Start 2P", system-ui;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact_right div {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact_social_media_img {
  width: 40px;
  margin-right: 10px;
}
.contact_input,
.contact_textarea {
  width: 200px;
  border: 2px solid #ff914d;
  background: #111;
  color: white;
  font-family: "Press Start 2P", system-ui;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact_input {
  height: 50px;
  width: 100%;
}

.contact_textarea {
  height: 100px;
  resize: none;
}
.contact_message {
  width: 200px;
  height: 100px;
  border: 2px solid #ff914d;
  background: #111;
  color: white;
  font-family: "Press Start 2P", system-ui;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  resize: none;
}
.contact_hearts_row {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
  width: 100%;
  padding-right: 10px;
}
.submit_button {
  font-family: "Press Start 2P", system-ui;
  background-color: #ff914d;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}

.submit_button:hover {
  background-color: #ff7030;
}
