:root {
  --primary: #3d306a;
  --primary-light: #5c4b93;
  --primary-dark: #2a2149;
  --accent: #ff8a00;
  --text: #333;
  --text-light: #666;
  --border: #ddd;
  --white: #fff;
}

body {
  color: var(--text);
  opacity: 0;
  line-height: 1.6;
  animation: .7s ease-in-out forwards fadeInAnimation;
}

@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}

header h1 {
  color: var(--white);
  margin: 0;
  font-size: 1.8rem;
}

h3 {
  color: var(--primary);
  text-align: center;
  margin: 30px 0 15px;
  position: relative;
}

h3:after {
  content: "";
  background-color: var(--accent);
  width: 100px;
  height: 3px;
  margin: 10px auto 0;
  display: block;
}

ol {
  counter-reset: step-counter;
  margin: 2rem auto;
  padding-left: 0;
  list-style: none;
}

ol li {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
}

ol li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

input, select {
  border: 2px solid var(--border);
  border-radius: 6px;
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  transition: border-color .3s;
}

input:hover, select:hover {
  border-color: var(--primary-light);
}

input:focus, select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px #3d306a26;
}

select {
  background-color: var(--white);
  height: 42px;
}

button {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  transition: background .3s, transform .2s;
}

button:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #00000026;
}

#inputs {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 800px;
  margin: 20px auto;
  padding: 25px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 10px 24px #0000001a;
}

#inputs:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 28px #0000001f;
}

#notificationInsertData {
  color: var(--text-light);
  background: linear-gradient(to right, #fff3e0, #ffe7c0);
  border-radius: 4px;
  max-width: 800px;
  margin: 20px auto;
  padding: 15px 20px;
  box-shadow: 0 4px 16px #00000012;
}

#notificationInsertData h4 {
  color: var(--text);
  margin: 0;
}

hr {
  background-color: var(--border);
  border: none;
  max-width: 800px;
  height: 1px;
  margin: 30px auto;
}

@media (width <= 768px) {
  .center3 td {
    display: block;
    width: 100% !important;
  }

  .center3 td:first-child {
    padding-bottom: 2px;
  }

  .center3 td:nth-child(2) {
    padding-top: 2px;
  }
}

@media (width <= 600px) {
  body {
    background: var(--secondary);
  }

  header h1 {
    font-size: 1.5rem;
  }

  #inputs {
    margin: 20px 1rem;
    box-shadow: 0 6px 16px #0000001a;
  }

  ol li {
    margin-bottom: 1.2rem;
    padding-left: 2.4rem;
  }
}

.hero {
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero .lead {
  color: #e0dff4;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  padding: .75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s, transform .2s;
  display: inline-block;
  box-shadow: 0 4px 12px #00000026;
}

.btn-primary:hover {
  background: #e07c00;
  transform: translateY(-2px);
}

.container {
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.signature-preview {
  max-width: 800px;
  color: var(--text);
  background-color: #fff;
  border-radius: 8px;
  margin: 20px auto;
  padding: 2rem;
  font-family: Courier New, monospace;
  font-size: .9rem;
  overflow-x: auto;
  box-shadow: 0 10px 24px #0000001a;
}

.footer {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 1rem;
}

.footer a {
  color: var(--accent);
}

.footer a:hover {
  text-decoration: underline;
}

.form-label {
  color: var(--primary);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}
/*# sourceMappingURL=genmail.9e4c6fd2.css.map */
