@charset "UTF-8";
/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #478cee;
  --secondary-color: #4fca92;
  --heading-font: system-ui;
  --body-font: system-ui;
}

.file-upload-app {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
  justify-self: center;
}
.file-upload-app .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  z-index: 0;
  overflow: hidden;
  max-width: 100vw;
}
@media (max-width: 1200px) {
  .file-upload-app .hero-background .desktop-only {
    display: none;
  }
}
@media (max-width: 1200px) {
  .file-upload-app .hero-background {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: column;
    grid-auto-rows: 0;
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .file-upload-app .hero-background {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .file-upload-app .hero-background {
    grid-template-columns: repeat(1, 1fr);
  }
}
.file-upload-app .hero-background .hero-background-column {
  position: relative;
  height: 100%;
}
.file-upload-app .hero-background .hero-background-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, #D9DDEA 4px, transparent 4px, transparent 8px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  z-index: 1;
}
@media (max-width: 1200px) {
  .file-upload-app .hero-background .hero-background-column:nth-child(5)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .file-upload-app .hero-background .hero-background-column:nth-child(4)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .file-upload-app .hero-background .hero-background-column:nth-child(1)::after {
    display: none;
  }
}
.file-upload-app .hero-gradient-background {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(0.8);
  transform-origin: top right;
}
.file-upload-app .hero-gradient-background img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .file-upload-app .hero-gradient-background {
    transform: scale(0.7);
  }
}
@media (max-width: 767px) {
  .file-upload-app .hero-gradient-background {
    transform: scale(0.5);
  }
}
@media (max-width: 480px) {
  .file-upload-app .hero-gradient-background {
    transform: scale(0.4);
  }
}
.file-upload-app .content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 66.66vw;
  width: 90%;
  align-items: center;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .file-upload-app .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    padding: 0 1rem;
  }
}
.file-upload-app .text-content {
  padding-right: 25px;
}
.file-upload-app .text-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
.file-upload-app .text-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .file-upload-app .text-content {
    padding-right: 0;
    text-align: center;
  }
  .file-upload-app .text-content h1 {
    font-size: 2.5rem;
  }
  .file-upload-app .text-content p {
    font-size: 1rem;
  }
}
.file-upload-app .upload-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 30px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.file-upload-app .upload-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #262A39;
}
@media (max-width: 480px) {
  .file-upload-app .upload-box h2 {
    font-size: 22px;
  }
}
.file-upload-app .upload-box .file-type-note {
  font-size: 18px;
  color: #4A4B65;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .file-upload-app .upload-box .file-type-note {
    font-size: 15px;
    margin-bottom: 1.5rem;
  }
}
.file-upload-app .upload-box .upload-area {
  border: 1px dashed #BBC1E0;
  border-radius: 8px;
  padding: 1px;
  text-align: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  background-color: #F9F9FB;
  background-clip: padding-box;
}
.file-upload-app .upload-box .upload-area .upload-label {
  display: block;
  padding: 29px;
  color: #6A6F87;
  cursor: pointer;
}
.file-upload-app .upload-box .upload-area:hover {
  background-color: #f1f1f5;
  border-color: #aaa;
}
.file-upload-app .upload-box .file-list {
  margin-bottom: 1.5rem;
  max-height: 100px;
  overflow-y: auto;
}
.file-upload-app .upload-box .file-list .file-item {
  display: flex;
  align-items: center;
  background-color: #f0fff0;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #333;
}
.file-upload-app .upload-box .file-list .file-item .checkmark {
  color: #28a745;
  margin-right: 8px;
  font-weight: bold;
}
.file-upload-app .upload-box .file-list .file-item .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-upload-app .upload-box .generate-button {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  background-color: #262A39;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
  line-height: 18px;
  width: auto;
  min-width: fit-content;
  max-width: fit-content;
  align-self: flex-end;
}
.file-upload-app .upload-box .generate-button:hover {
  background-color: #1a1d29;
}
.file-upload-app .upload-box .generate-button::after {
  content: "→";
  margin-left: 0.1rem;
  font-size: 18px;
  transition: transform 0.2s;
}
.file-upload-app .upload-box .generate-button:hover::after {
  transform: translateX(3px);
}
@media (max-width: 480px) {
  .file-upload-app .upload-box .generate-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
