*{
    margin: 0;
    padding: 0;
}




html,
body {
  height: 100%;
}
body {
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: 60%;
  font-size: 16px;
  line-height: 140%;
  font-family: Arial, Helvetica, sans-serif;
}

.container-local {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 5%;
    justify-content: center;
    margin-top: 10%;
}


.menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 10%;
    
}
.menu-logo{
    display: flex;
    flex-direction: row;
justify-content: center;
align-items: center;

}
.logo {
    height: 40px;
  }
  
  .logo-02 {
      margin-left: 5px;
    height: 20px;
  }

  .line {
    padding: 2px;
    background: rgb(53, 169, 225);
    background: linear-gradient(
      90deg,
      rgba(53, 169, 225, 1) 0%,
      rgba(225, 92, 47, 1) 100%
    );
  }


  input[type='checkbox'], input[type='radio'] {
    float: left;
    margin-left: -1.5em;
    margin-top: 2.5px;
    
    
    
  }
  input[type='checkbox']+ label, input[type='radio'] + label{
    margin-bottom: 5px;
  }
  input[type='checkbox'],input[type='radio'] {
    width: 1.1em;
    height: 1.1em;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
  input[type=checkbox] {
    border-radius: 0.25em;
  }

  input[type='radio'] {
    border-radius: 50%;
  }
  input[type=checkbox]:active,input[type='radio']:active {
    filter: brightness(90%);
  }
  input[type=checkbox]:focus,input[type='radio']:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  input[type=checkbox]:checked,input[type='radio']:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }

  input[type=checkbox]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  }

  input[type='radio']:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  }

  input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  }

  input[type=checkbox]:disabled,input[type='radio']:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5;
  }

  .margin-checkbox-radiobutton{
    margin-left: 1.5em;

}
.btn-position{
    display: flex;
    flex-direction: row;
    justify-content: right;
}

.form-position{
    width: 100%;
}


/*MEDIA*/

@media only screen and (max-width: 480px) {
}

@media only screen and (min-width: 601px) {

    body {

        background-size: 40%;

      }
      .container-local {

        margin-top: 5%;
    }
    .menu-logo{

    justify-content: left;
    align-items: center;
    
    }
    .logo {
        height: 50px;
      }
      
      .logo-02 {
          margin-left: 5px;
        height: 30px;
      }


      .form-position{
          width: 50%;
      }
      .btn-position{
        justify-content: left;
    }
  
}

@media only screen and (min-width: 993px) {

    body {

        background-size: 30%;

      }

    .form-position{
        width: 30%;
    }
}
