<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: black;
}

h1{font-size: 30px;}
.f-10{font-size: 10px !important;}
.f-12{font-size: 12px !important;}
.f-14{font-size: 14px !important;}
.f-16{font-size: 16px !important;}

.br-30{border-radius: 30px;}

.nunito-sans-900 {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

.nunito-sans-600 {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

.nunito-sans-400 {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}



.text-blue {
  color: #456c9c;
}
.text-purple {
  color: #A31F68;
}
.text-decoration-blue {
    border-bottom: 3px solid #456c9c;
}
.text-decoration-purple {
    border-bottom: 3px solid #A31F68;
}

form {
  background-color: white;
  border-radius: 20px;
}

.input-container {
  position: relative;
  margin: 20px 0;
}

/* Stili per l'etichetta */
.custom-label {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: white;
  padding: 0 5px;
  color: #a32663;
  font-weight: normal;
}

/* Stili per il campo di input */
.custom-input {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #a32663;
  border-radius: 20px;
  outline: none;
  font-size: 16px;
}

/* Placeholder style */
.custom-input::placeholder {
  color: #a3a3a3;
}

/* Placeholder style */
.custom-select::placeholder {
    color: #a3a3a3;
  }
  

.custom-input, .custom-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #A32663;
    border-radius: 20px;
    outline: none;
    font-size: 16px;
}
.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background-image: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"&gt;&lt;path fill="none" stroke="%23A31F68" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m6 9l6 6l6-6"/&gt;&lt;/svg&gt;');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  cursor: pointer;
  height: calc(2em + 1rem);
  color: #000000;
  
}

/* Stili per il container della checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

/* Nascondi l'elemento checkbox di default */
.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Stili personalizzati per la checkbox */
.custom-checkbox + .custom-label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

/* Crea uno stile per la checkbox personalizzata */
.custom-checkbox + .custom-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #A32663;
    border-radius: 4px;
    background-color: #fff;
}

/* Stili per lo stato attivo della checkbox */
.custom-checkbox:checked + .custom-label::before {
    background-color: #A32663;
    border-color: #A32663;
}

/* Aggiungi un segno di spunta per lo stato attivo della checkbox */
.custom-checkbox:checked + .custom-label::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.checkbox-container .custom-label{color: #212322;}

.btn-submit {
  background: transparent linear-gradient(96deg, #003567 0%, #a31f68 100%) 0% 0%
    no-repeat padding-box;
  box-shadow: 0px 6px 16px #0035677a;
  border: 2px solid #ffffff47;
  border-radius: 16px;
  opacity: 1;
  color: #ffffff;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.btn:focus {
  box-shadow: 0px 6px 16px #0035677a;
}
.btn-submit:hover {
  color: #ffffff;
}

.bg-texture {
    background-image: url("img/BG@2x-100_mobile.png");
    background-size: contain;
    background-repeat: no-repeat;
  }

  @media (min-width: 576px) { .bg-texture {
    background-image: url("img/BG@2x-100.png");
    background-size: 100%;
    background-repeat: no-repeat;
  } }

@media (min-width: 768px) { 

    .bg-texture {
        background-image: url("img/BG@2x-100.png");
        background-size: 100%;
        background-repeat: no-repeat;
      }
      h1{font-size: 40px;}
 }</pre></body></html>