/* [project]/app/contacts/contacts.module.css [app-client] (css) */
.contacts-module__IVS6GW__container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}

.contacts-module__IVS6GW__card {
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 25px #0000001a;
}

@media (min-width: 768px) {
  .contacts-module__IVS6GW__card {
    flex-direction: row;
  }
}

.contacts-module__IVS6GW__infoSection {
  color: #fff;
  background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 2.5rem;
  display: flex;
}

.contacts-module__IVS6GW__infoTitle {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.contacts-module__IVS6GW__infoBlock {
  margin-bottom: 2rem;
}

.contacts-module__IVS6GW__infoLabel {
  color: #bfdbfe;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
  font-size: .9rem;
  font-weight: 600;
  display: block;
}

.contacts-module__IVS6GW__infoValue {
  font-size: 1.1rem;
  line-height: 1.5;
}

.contacts-module__IVS6GW__formSection {
  background-color: #f8fafc;
  flex: 1.5;
  padding: 2.5rem;
}

.contacts-module__IVS6GW__formTitle {
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.contacts-module__IVS6GW__formGroup {
  margin-bottom: 1.25rem;
}

.contacts-module__IVS6GW__label {
  color: #475569;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.contacts-module__IVS6GW__input, .contacts-module__IVS6GW__textarea {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
  transition: all .2s;
}

.contacts-module__IVS6GW__input:focus, .contacts-module__IVS6GW__textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px #3b82f61a;
}

.contacts-module__IVS6GW__textarea {
  resize: vertical;
  min-height: 120px;
}

.contacts-module__IVS6GW__submitBtn {
  color: #fff;
  cursor: pointer;
  background-color: #2563eb;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: .875rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color .2s, transform .1s;
}

.contacts-module__IVS6GW__submitBtn:hover {
  background-color: #1d4ed8;
}

.contacts-module__IVS6GW__submitBtn:active {
  transform: translateY(1px);
}

.contacts-module__IVS6GW__submitBtn:disabled {
  cursor: not-allowed;
  background-color: #94a3b8;
}

.contacts-module__IVS6GW__successMessage {
  color: #065f46;
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.contacts-module__IVS6GW__errorMessage {
  color: #991b1b;
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.contacts-module__IVS6GW__resetLink {
  color: #059669;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 1rem;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
}

/*# sourceMappingURL=app_contacts_contacts_module_2bd67bbf.css.map*/