.erro{
    border: 1px solid #a61f23 !important;
     padding: 20px 16px 6px;
     height: 42px;
    }
    .sucesso{
    border: 1px solid #12669e !important;
    padding: 20px 16px 6px;
    height: 42px;
    }
    
    
    .exibe_loading {
        display: block;
    
    }
    
    .oculta_loading {
        display: none;
    
    }
    
    .div_loader2 {
        display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    }
    
    .loader2 {
      border: 8px solid #f3f3f3; /* Light grey */
      border-top: 8px solid #003B71; /* Blue */
      border-radius: 50%;
      width: 80px;
      height: 80px;
      animation: spin 2s linear infinite;
    
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }