@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
      --bege: #b2a392;
      --black: #282828;
      --primary: #18073e;
      --secundary: #ec7743;
}

.informe_outro {
      display: none;
}

#load {
      position: fixed;
      inset: 0px;
      background: rgba(0, 0, 0, 0.9);
      display: grid;
      align-items: center;
      justify-content: center;
      z-index: 99;
      display: none;
}
#load section {
      text-align: center;
}
#load img {
      width: 80px;
}
#load h1 {
      color: #fff;
      padding: 0px;
      margin: 0px;
      font-size: 1.6em;
      font-weight: bold;
      text-align: center;
}
#load h2 {
      color: #fff;
      padding: 0px;
      margin: 0px;
      font-size: 1.3em;
      text-align: center;
}

a {
      color: var(--primary);
      text-decoration: underline;
}
a:hover {
      color: var(--secundary);
}

#result {
      margin: 15px 0 0 0;
}
#result.danger {
      padding: 15px;
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
      border-radius: 5px;
      margin-bottom: 15px;
      display: none;
}
#result.success {
      text-align: center;
      padding: 15px;
      background-color: #aaffc3;
      color: #193419;
      border: 1px solid #4ee94e;
      border-radius: 5px;
      margin-bottom: 15px;
      display: none;
}

body {
      font-family: 'Montserrat', sans-serif;
      overflow-y: auto;
      background: linear-gradient(
            -45deg,
            var(--primary),
            #ec7743,
            #ffb347,
            var(--primary)
      );
      background-size: 400% 400%;
      animation: gradientBG 10s ease infinite;
}

.container {
      width: 100%;
}

.form-section {
      width: 400px;
      margin: 0 auto;
      overflow-x: auto;
      background: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section h1 {
      text-align: center;
      font-size: 1.4em;
      font-weight: bold;
      color: var(--primary);
      padding: 15px 0;
}

.form-section #logo {
      width: 100%;
      text-align: center;
}
.form-section #logo img {
      width: 50%;
}

form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      font-size: 13px;
}

form input {
      width: calc(100% - 20px);
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      transition: 0.3s;
      font-size: 16px;
}
form select {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      transition: 0.3s;
      font-size: 16px;
}

form input:focus,
form select:focus {
      border-color: #0d6efd;
      outline: none;
}

form button {
      background: #008543;
      width: 100%;
      display: block;
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
}

form button:hover {
      background: var(--primary);
}

.image-section {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
}

.image-section img {
      max-width: 100%;
      border-radius: 10px;
}

.checkbox-container {
      display: flex;
      align-items: center;
      cursor: pointer;
      user-select: none;
}
.checkbox-container input {
      display: none;
}
.checkmark {
      width: 40px;
      height: 24px;
      background-color: #eee;
      border-radius: 5px;
      border: 2px solid #ccc;
      position: relative;
      transition: all 0.3s;
}
.checkbox-container:hover .checkmark {
      background-color: #ddd;
}
.checkbox-container input:checked + .checkmark {
      background-color: #0071e3;
      border-color: #0071e3;
}
.checkmark:after {
      content: '';
      position: absolute;
      display: none;
}
.checkbox-container input:checked + .checkmark:after {
      display: block;
}
.checkbox-container .checkmark:after {
      left: 7px;
      top: 3px;
      width: 6px;
      height: 12px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
}
label {
      margin-left: 10px;
      color: #333;
      font-size: 18px;
}

@keyframes gradientBG {
      0% {
            background-position: 0% 50%;
      }
      50% {
            background-position: 100% 50%;
      }
      100% {
            background-position: 0% 50%;
      }
}

@media (max-width: 500px) {
      .form-section {
            width: calc(100% - 60px);
            padding: 30px;
            box-shadow: none;
      }
      body {
            background: #fff;
      }
}
