.main {
  width: calc(100% - 250px);
}

@media (max-width: 1000px) {
  .main {
    width: calc(100% - 210px);
  }
}

@media (max-width: 720px) {
  .main {
    width: 100%;
  }
}

.file-drop {
  min-height: 96px;
  padding: 18px;
  border: 1px dashed #7f96aa;
  border-radius: 5px;
  background: #f8fafb;
  cursor: pointer;
}

.file-drop input {
  min-height: auto;
  border: 0;
  padding: 0;
  background: transparent;
}

.file-drop > span {
  color: #667085;
  font-weight: 400;
}

.file-list,
.document-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.file-list > div,
.document-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid #e4e7ec;
  background: #fafbfc;
}

.file-list > div {
  justify-content: space-between;
}

.document-list > div > span:nth-child(2) {
  flex: 1;
}

.document-list small {
  display: block;
  margin-top: 4px;
  color: #667085;
}

.file-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #eaf0f5;
  color: #24415f;
  font-size: 10px;
  font-weight: 800;
}
