.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-around;
}

.contact-form-container {
  border-radius: 20px;
  background-color: #0E1836;
  padding: 2rem 2rem;
}

.contact-details {
  margin-top: 3em;
  position: relative;
  padding: 2rem 0;
}

.contact-details > * {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.contact-details::before {
  content: "";
  border-top: 2px solid #fbfbfb;
  width: 240px;
  display: block;
  top: 0;
  position: absolute;
}

.contact-details::after {
  content: "";
  border-bottom: 2px solid #fbfbfb;
  width: 240px;
  display: block;
  bottom: 0;
  position: absolute;
}