/* --color section  */
:root {
    --app--yellow: #ffc221;
    --app--black: #070500;
  }
.main-section {
    width: 100% !important;
    display: flex;
    justify-content: center;
    margin-top: 10px !important ;
    color: var(--app--yellow);
  
    
  }
  form{
    width: 30% !important;
    margin: auto !important;
    border: 2px solid black !important;
    padding: 20px 20px !important;
    margin-top: 20px !important;
    border-radius: 10px !important;
    box-shadow: 10px 5px 10px black !important;
  }
  .form-label{
    font-size: 20px !important;
    color: orangered !important;
  }
  .btn-contact{
    padding: 10px !important;
    width: 120px !important;
    display: block !important;
  }
  .btn-login{
    color: white !important;
    text-decoration: none !important;
  }
  @media only screen and (max-width:600px){
    form{
      width: 100% !important;
    }
    .btn-contact{
      width: 100% !important;
    }
  }