body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #1d3c55;;
  color: #1d2939;
}

.container {
  max-width: 480px;
  margin: 48px auto;           /* Esto baja el contenedor */
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 16px;         /* Bordes redondeados */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.logo-section {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: contain;
}

h1 {
  font-size: 16px;
  margin-top: 24px;
  line-height: 1;
}

.dev-info {
  font-size: 14px;
  color: #9599a0b7;
  margin-top: 4px;
}

.description {
  font-size: 14px;
  color: #4e4e4e;
  margin-bottom: 22px;
  line-height: 1.5;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
  color: #1d2939;
}

input,
textarea {
  background-color: #f2f4f7;
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #344054;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
}

button {
  background-color: #1d3c55;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #163047;
}

.footer-info {
  margin-top: 32px;
  font-size: 14px;
  color: #344054;
  line-height: 1.5;
}
