@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
  background-color: white;
  margin: 0;
  padding: 0;
}

.contact-container {
  font-family: 'Quicksand', sans-serif;
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top:100px;
}

.contact-content {
  display: flex;
  max-width: 1400px;
  width: 100%;
  overflow: hidden;
  background-color: #BDDE9B;  
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ebfadc;
  border-radius: 2rem 0 0 2rem;
}

.contact-form-container {
  flex: 1;
  padding: 4rem;
  border-radius: 0 2rem 2rem 0;
}

.title {
  font-size: 3.5rem;
  color:  #172869;
  margin-bottom: 1rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1.4rem;
  color: #0176C0;
  margin-bottom: 3rem;
  font-weight: 500;
}

.contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #172869;
  font-size: 1.1rem;
}

input, textarea {
  padding: 1rem;
  border: 2px solid #0176C0;
  border-radius: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

input:focus, textarea:focus {
  outline: none;
  border-color:  #1BB6AF;
  box-shadow: #172869;
}

.error-message {
  color:  #0176C0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.submit-btn {
  background-color: #0176C0;
  color: white;
  border: none;
  padding: 1.25rem;
  font-size: 1.2rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.submit-btn:hover {
  background-color:  #0176C0;
  transform: translateY(-3px);
  box-shadow: #172869;
}

.fun-element {
  margin-top: 2rem;
  text-align: center;
}

.mailbox {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: bounce 2s infinite;
}

.fun-text {
  font-size: 1.3rem;
  color:  #1BB6AF;
  margin-top: 1rem;
  font-weight: 600;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 1024px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form-container {
    border-radius: 2rem;
    margin-bottom: 2rem;
  }
  
  .title {
    font-size: 3rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .contact-info, .contact-form-container {
    padding: 2rem;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
}
