@import url("./common.css");

main {
  padding-top: 10rem;
  padding-bottom: 10rem;
  min-height: 90vh;
}

.contact-info a {
  color: #333;
}

h1 {
  font-size: 4rem;
  color: #3a2f2b;
  margin-bottom: 3.75rem;
  font-weight: bold;
}

.contact-info h3 {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 0.625rem;
}

.contact-info p {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2.875rem;
}

.socials {
  margin-top: 1.25rem;
}

.socials a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: #666;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 2.875rem;
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.125rem;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  font-size: 1rem;
  outline: none;
  /* transition: border-color 0.3s; */
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ccc;
}

.message-area {
  resize: none;
  height: 7.25rem;
}

.submit-btn {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 0.625rem 2.875rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.submit-btn .arrow {
  position: relative;
  left: 0.5rem;
  transition: all 0.2s ease;
}

.submit-btn:hover .arrow {
  left: 1rem;
}

.behance-icon {
  width: 2rem;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 3rem;
    margin-bottom: 3.25rem;
  }
}

#sending {
  display: none;
}