
  
  
  .modal{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #0d9dffc9;

  }.card-modal{
    width: 40%;
    height: 80%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 13px;
    background: white;
  }.card-header{
    display: flex
    ;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 20%;
  }.card-header span:nth-child(1){
    font-size: 18px;
    font-weight: 600;

  }.card-header span:nth-child(2){
    font-size: 14px;
    font-weight: 300;

  }
  .card-body{
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 71px;
    gap: 14px;
  }.card-body span{
    font-size: 13px;
    font-weight: 500;
  }.card-body input{
    width: 100%;
    height: 46px;
    border-radius: 0.5rem;
    font-size: 14px;
    outline: none;
    text-align: center;
    border: none;
    background-color: rgba(0, 0, 0, 0.023);
    
  }
  textarea{
    width: 100%;
    height: 300px;
    outline: none;
    border: none;
    background-color: rgb(0 0 0 / 2%);
      resize: none;
    padding: 10px;
  }
  .card-body button{
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 1rem;
    background: var(--color);
    color: white;
    font-size: 16px;
  }
  .modal-alerta{
      z-index: 9999;
      top: 0;
      left: 0;
      position: fixed;
      width: 100%;
    height:100%;
    display: flex;
    align-items:  center;
    justify-content: center;
    background: #0d9dffc9;
  }.card-modal-alerta{
      border-radius: 1rem;
        width: 34%;
    height: 37%;
      display: flex;
      flex-direction: column;
        align-content: center;
    justify-content: center;
  }.card-modal-alerta i{
          font-size: 72px;
    color: #0d9dff;
  }.error_in{
      border: 1px solid red !important;
  }