.file-upload-wrapper {
    /* border: 2px dashed #ddd; */
    position: relative;
    padding: 150px 20px;
    text-align: center;
    /* background: linear-gradient(to top, #F7EDD3, #F0F0F0); */
    background-image: linear-gradient(to top, rgba(67, 67, 67, 0.19), rgba(255, 255, 255, 0.19)) !important;


    cursor: pointer;
  }


  .file-upload-wrapper label {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #000;
    font-size: 16px;
    cursor: pointer;
  }

  .file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
  }
  .submit-btn #uploadButton{
    background-color: rgba(67, 67, 67, 0.31) !important;
    color: #ffffff !important;
    padding: 0.7rem 4.3rem !important;
  }

  .submit-btn .fetchbtn{
    background-color: rgba(67, 67, 67, 0.31) !important;
    color: #ffffff !important;
    padding: 0.7rem 4.3rem !important;
  }

  #submitButton{
    background-color: #434343!important;
    color: #fff;
    padding: 0.7rem 5rem !important;

  }
  #cancelButton{
    border: 1px solid #434343!important;
    color: #434343;
    padding: 0.7rem 5rem !important;
  }
  #submitButton:hover{
    background-color: #545353 !important;
    transition: 0.4s ease-in-out;
  }

  #cancelButton:hover{
    background-color: #434343!important;
    transition: 0.5s ease-in-out;
    color: #fff;
  }
  #inputField:focus{
    box-shadow: none!important;
    transition: 0.5s ease-in;
  }
  input[type="email"]::placeholder,
  input[type="password"]::placeholder{
    color: gray; 
  }

  /* Upload card */

  .card_container{
    flex: 0 0 auto;
    width: 28%;
  }

  .upload_card_progress_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }


  @media only screen and (max-width: 600px) {
    /* Your CSS rules for smaller screens here */
    .card_container{
      flex: 0 0 auto;
      width: 90.333%;
    }
  }
  
  /* For medium screens (e.g., tablets) */
  @media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Your CSS rules for medium screens here */
    .card_container{
      flex: 0 0 auto;
      width: 33.333%;
    }
  }

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 1.4s ease-in forwards;
}

@keyframes fadeInAnimation {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
