:root {
  --white: #ffffff;
  --white-05: rgba(255, 255, 255, 0.05);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-85: rgba(255, 255, 255, 0.85);
  --white-90: rgba(255, 255, 255, 0.9);
  --green-400: #0ea84e;
  --green-500: #0f9748;
  --green-600: #0b7939;
  --green-700: #075e2b;
  --gray-400: #9c9c9c;
  --gray-600: #6b6b6b;
  --gray-700: #515151; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif; }

html,
body {
  color: var(--white-85);
  background-color: var(--green-500); }

.container {
  width: 90%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto; }

.text {
  display: flex;
  flex-flow: column;
  gap: 1em; }

p {
  line-height: 1.5; }

h2,
h3 {
  font-weight: 800;
  color: var(--white); }

a,
strong {
  color: var(--white);
  font-weight: 700; }

a {
  transition: opacity 0.25s; }
  @media (hover: hover) {
    a:hover {
      opacity: 0.75; } }

.splash {
  min-height: 100vh; }
  .splash .container {
    max-width: 45rem; }
  .splash main {
    padding: 4rem 0 2rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 3rem; }
    .splash main > img {
      display: block;
      width: 25rem;
      max-width: 75%;
      height: auto; }
    .splash main .text p {
      text-align: justify;
      hyphens: auto; }
    .splash main .certificado {
      padding: 1rem 1.5rem 1.75rem;
      border-radius: 20px;
      background-color: var(--white-90); }
      .splash main .certificado h2 {
        color: var(--green-600);
        margin-bottom: 1rem; }
      .splash main .certificado p {
        color: var(--gray-600);
        font-weight: 500; }
      .splash main .certificado form {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        gap: 1.5rem;
        margin-top: 1rem; }
        @media screen and (max-width: 640px) {
          .splash main .certificado form {
            flex-flow: column;
            gap: 1rem; }
            .splash main .certificado form > * {
              width: 100%; } }
        .splash main .certificado form label {
          flex: 0 0 calc(50% - 0.75rem);
          display: flex;
          flex-flow: column;
          gap: 4px;
          color: var(--gray-700);
          font-size: 0.875rem;
          font-weight: 700; }
          @media screen and (max-width: 640px) {
            .splash main .certificado form label {
              flex: 1; } }
          .splash main .certificado form label input {
            padding: 0.5em 1em;
            font-size: 1rem;
            font-weight: 500;
            color: var(--gray-700);
            border-radius: 10px;
            border: 2px solid var(--gray-400);
            background: transparent; }
            .splash main .certificado form label input::placeholder {
              color: var(--gray-400); }
            .splash main .certificado form label input:focus {
              outline-color: var(--green-600); }
        .splash main .certificado form .feedback {
          flex: 1;
          color: var(--gray-600);
          font-weight: 600;
          font-size: 0.875rem; }
          @media screen and (max-width: 640px) {
            .splash main .certificado form .feedback {
              order: 4;
              text-align: center; } }
          .splash main .certificado form .feedback a {
            color: currentColor;
            font-weight: 700; }
          .splash main .certificado form .feedback.success {
            color: var(--green-500); }
          .splash main .certificado form .feedback.error {
            color: red; }
        .splash main .certificado form button {
          padding: 0.625em 1.25em;
          color: var(--white-90);
          font-size: 1rem;
          font-weight: 600;
          border-radius: 10px;
          border: none;
          background-color: var(--green-600);
          transition: opacity 0.2s; }
          @media screen and (max-width: 640px) {
            .splash main .certificado form button {
              margin-top: 0.5rem; } }
          .splash main .certificado form button:disabled {
            opacity: 0.5; }
          .splash main .certificado form button:not(:disabled) {
            cursor: pointer; }
            @media (hover: hover) {
              .splash main .certificado form button:not(:disabled):hover {
                opacity: 0.85; } }
  .splash footer {
    padding: 2rem 0 1rem; }
    .splash footer .main-content {
      font-size: 0.875rem;
      text-align: center;
      line-height: 1.625; }
      .splash footer .main-content hr {
        margin-bottom: 1rem;
        opacity: 0.25; }
    .splash footer .copy {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      gap: 0.5em;
      padding: 0.5rem;
      margin-top: 1rem;
      color: var(--white-85);
      font-size: 0.75rem;
      border-radius: 16px;
      background-color: var(--white-10); }
      .splash footer .copy img {
        display: block;
        width: auto;
        height: 1.5em; }

/*# sourceMappingURL=style.css.map */
