:root {
  --bg-color:rgba(11, 17, 48, 1);
  --bg-gradiente: linear-gradient(269.28deg, #0C2992 8.64%, #0C2992 8.65%, rgba(12, 41, 146, 0) 122.41%) ;
  --color-primary: #0d6efd;
}

.title-section {
  font-weight: 700;
  font-size: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", sans-serif;
  background-color: var(--bg-color) !important;
  color: white !important;
}
body p {
  margin: 0;
  font-weight: 600;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(27, 16, 190, 0.379);
}
header a {
  text-decoration: none;
}
header .logo-header {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(266.21deg, #166ACC 4.17%, rgba(203, 211, 255, 0) 138.87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
header .logo-header:hover {
  color: white !important;
}
header .btn-back {
  color: aliceblue;
  font-size: 2rem;
}

main {
  display: flex;
  padding: 1rem;
}
main p {
  color: lightgray;
}
main article {
  width: 50%;
}
main .main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
main .main-text h1 {
  font-size: 3rem;
  font-weight: 700;
}
main .main-text i {
  font-size: 4rem;
  color: rgb(16, 223, 61);
}
main .main-text img {
  width: 20rem;
}
main .main-form {
  background-color: rgba(25, 25, 148, 0.233);
  padding: 1rem;
  border-radius: 1rem;
}
main .main-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 600;
}
main .main-form form .form-control {
  background-color: var(--bg-color);
  border: none;
  color: white;
  font-weight: 600;
}
main .main-form form textarea {
  margin-top: 0.5rem;
}

.modal {
  color: black;
}

@media (max-width: 720px) {
  main {
    flex-direction: column;
    gap: 4rem;
  }
  main article {
    width: 100%;
  }
  main .main-text img {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */