.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 450px;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  transition: 0.2s;
}
.file-drop-area.is-active {
  background-color: rgba(0, 0, 0, 0.05);
}

.fake-btn {
  flex-shrink: 0;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.file-msg {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.file-input:focus {
  outline: none;
}

.highlight {
  animation: highlightlogin 2s infinite;
}

@keyframes highlightlogin {
    0% {
        color: #000000;
    }
    20% {
        color: #912300;
    }
    30% {
        color: #ff0000;
    }
    40% {
        color: #912300;
    }
    50% {
        color: #ff0000;
    }
    60% {
        color: #912300;
    }
    80% {
        color: #000000;
    }
    100% {
        color: #000000;
    }
}

.progress {
  width: 100%;
  height: 35px;
  border: 2px solid #ccc;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #006633;
  width: 0%;
  transition: width 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  .file-drop-area {
    border: 1px dashed rgba(255, 255, 255, 0.6);
  }

  .file-drop-area.is-active {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .fake-btn {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  @keyframes highlightlogin {
      0% {
          color: #ffffff;
      }
      20% {
          color: #912300;
      }
      30% {
          color: #ff0000;
      }
      40% {
          color: #912300;
      }
      50% {
          color: #ff0000;
      }
      60% {
          color: #912300;
      }
      80% {
          color: #ffffff;
      }
      100% {
          color: #ffffff;
      }
  }
}



