.teste{
  background-color: red;
  width: 100px;
  height: 100px;
  float: right;
}
.logo{
    display: flex;
    justify-content: center;
}
.logo #logo{
    width: 50%;

}

.decla_bg_primary{
    background-color: #6bce9c;
}

.decla_text_primary{
    color: #6bce9c;
}

.decla_form-select {
    width: 100%;
    background: none;
    border: 1px solid #d2d6da;
    border-radius: 0.375rem;
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
    padding: 0.625rem 0.75rem !important;
    line-height: 1.3 !important;
    color: #b1b4c4;
    font-size: 0.875rem;
    font-weight: 400;
}
.form-control-sm {
    width: 100%;
    background: none;
    border: 1px solid #d2d6da;
    border-radius: 0.375rem;
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
    /* padding: 0.625rem 0.75rem !important; */
    line-height: 1.3 !important;
    color: #b1b4c4;
    font-size: 0.875rem;
    font-weight: 400;
}
.form-control-sm:focus {
    width: 100%;
    background: none;
    border: 1px solid #d2d6da;
    border-radius: 0.375rem;
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
    /* padding: 0.625rem 0.75rem !important; */
    line-height: 1.3 !important;
    color: #b1b4c4;
    font-size: 0.875rem;
    font-weight: 400;
}
.declar_icon_clint{
    padding-right: 10px;
}


/* Style The Dropdown Button */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    left: -100px;
    padding: 10px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

    /* Dropdown Content (Hidden by Default) */
    .dropdown-content-register {
        display: none;
        position: absolute;
        left: -170px;
        padding: 10px;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
      }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;

    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #e0dfdf}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

    /* Links inside the dropdown */
    .dropdown-content-register a {
        color: black;
    
        text-decoration: none;
        display: block;
      }
      
      /* Change color of dropdown links on hover */
      .dropdown-content-register a:hover {background-color: #e0dfdf}
      
      /* Show the dropdown menu on hover */
      .dropdown:hover .dropdown-content-register {
        display: block;
      }
      
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background-color: #3e8e41;
  }