.upload-files-container {
    background-color: #fff;
    width: 100%;
     border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #000;
   }
  .drag-file-area {
     width: auto;
    height: 46px;
    align-items: center;
    display: flex;
    text-align: center;
  }
  .drag-file-area .upload-icon {
    font-size: 30px;
    color: #32DD9A;
  }
  .drag-file-area h3 {
    font-size: 26px;
    margin: 15px 0;
  }
  .drag-file-area label {
    font-size: 19px;
    width: 130px;
  }
  .drag-file-area label .browse-files-text {
    color: #32DD9A;
    font-weight: bolder;
    cursor: pointer;
  }
  .browse-files span {
    position: relative;
    top: -25px;
  }
  .default-file-input {
    opacity: 0;
  }
  @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }
 
  .file-info {
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .file-icon {
    margin-right: 10px;
  }
  .file-name, .file-size {
    padding: 0 3px;
  }
  .remove-file-icon {
    cursor: pointer;
  }
  .drag-file-area input{
    height: unset!important;
  }
  
  