body {
      background-color: #f5f5f5;
      font-family: 'Arial', sans-serif;
      padding: 20px;
    }
    .form-container {
     margin:10px;
    
    }
   .subtitulo{
    text-align: center;
   }
    .download{
      color: #000;
    }
    .form-container h2 {
      text-align: center;
      color: #003955;
      margin-bottom: 30px;
      font-weight: 600;
    }
    .form-label {
      font-weight: 500;
      color: #333;
    }
    .form-control {
      border-radius: 5px;
      border: 1px solid #ccc;
      transition: border-color 0.3s ease;
    }
    .form-control:focus {
      border-color: #003955;
      box-shadow: 0 0 5px rgba(0, 57, 85, 0.2);
    }
    .btn-submit {
      background-color: #003955;
      color: white;
      padding: 13px 10px;
      border: none;
      border-radius: 5px;
      width: 30%;
     
      font-weight: 500;
      transition: background-color 0.3s ease;
      margin-bottom: 10px;
     
    }
    .cadastro {
    text-align: center;
    }
    .btn-submit:hover {
      background-color: #002740;
    }
    .conditional-field {
      display: none; 
      margin-top: 10px;
    }
    .conditional-field.active {
      display: block; 
    }
    .form-check-label {
      margin-left: 5px;
      color: #333;
    }
    @media (max-width: 576px) {
      .form-container {
        padding: 20px;
      }
    }