.upload {
  max-width: 450px;
}

.upload-subtitle {
  font-size: 20px;
  color: rgba(0, 10, 23, 0.5);
}

.upload-form {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.upload-dropzone {
  position: relative;
  border: 1px dashed rgba(0, 10, 23, 0.5);
  border-radius: 4px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 184px;
}

.upload-dropzone:hover .upload-icon {
  background-color: var(--primary-color);
}

.upload-dropzone:hover .upload-icon svg {
  color: #fff;
}

.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.upload-placeholder {
  pointer-events: none;
}

.upload-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  transition: background-color 0.3s ease;
}

.upload-icon svg {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.upload-placeholder p {
  font-size: 16px;
  line-height: 19px;
}

.upload-placeholder span {
  color: var(--primary-color);
}

.upload-button {
  width: 100%;
}

.upload-filename {
  font-size: 16px;
  line-height: 19px;
  color: var(--primary-color);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3px;
}

.upload-remove {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  width: 30px;
  transition: background-color 0.3s ease;
}

.upload-remove:hover {
  background-color: rgba(20, 130, 250, 0.1);
}