* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-contact-container {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 5px 5px 1px rgb(237, 237, 244);
  padding: 1.25rem; /* Add padding */
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.25rem;
}

.contact-left a {
  text-decoration: none;
  color: #000;
}

h1 {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}

.contact-inputs {
  width: 25rem;
  height: 3.125rem;
  background-color: #ddecff;
  border: none;
  outline: none;
  padding-left: 1.5625rem;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-left textarea {
  height: 8.75rem;
  padding-top: 1rem;
  border-radius: 20px;
}

.contact-inputs:focus {
  border: 2px solid #007bff;
}

.contactButton {
  background: #007bff;
  color: #fff;
  font-family: inherit;
  padding: 0.45em;
  padding-left: 1em;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #022954;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3em;
}

.iconButton {
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #4e9df1;
  right: 0.3em;
  transition: all 0.3s;
}

.contactButton:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em #3993f2c2;
}

.contact-right img {
  border-radius: 60px;
}

@media (max-width: 48rem) {
  .contact-inputs {
    width: 80vw;
  }

  .contact-right {
    display: none;
  }
}
