* {
  box-sizing: border-box;
  margin: 5px;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

.contact-container {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-inner-container {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info-container,
.contact-form {
  width: 100%;
  padding: 30px;
  text-align: center;
}

.contact-info-container {
  background: #150c45;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.contact-form {
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.contact-heading {
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #fff;
}

.contact-description {
  line-height: 1.6rem;
  text-align: justify;
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
}

.line {
  height: 5px;
  border-radius: 5px;
  background: #fff;
  margin: 12px 0;
}

.contact-details {
  padding-top: 12px;
}

.contact-details h3 {
  font-weight: 600;
  color: #fffbfb;
}

.contact-details p {
  color: #f7f7f7;
  font-weight: 500;
  margin-bottom: 6px;
}

.social-link-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.social-link-container .fa {
  margin: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #3498db;
  transition: all 0.2s;
}

.social-link-container .fa:hover,
.submit-btn:hover {
  transform: translateY(-4px);
  color: #2980b9;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.form-group:not(:last-child) {
  margin-bottom: 1rem;
}

.input-field {
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 14px;
  background: #ecf0f1;
}

.form-input {
  height: auto;
}

.form-group textarea {
  height: 150px;
}

.submit-btn {
  padding: 0.8rem 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #0f134f;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: #2980b9;
}
