@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #5ee7df, #b490ca 100%);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2rem 2.5rem 2rem 2.5rem;
  width: 350px;
  text-align: center;
}

h1 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #b490ca;
  margin: 0 0 2rem 0;
  font-size: 2.2rem;
}
h1 span {
  color: #374151;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.file-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ece9f7;
  color: #6B7280;
  border-radius: 10px;
  cursor: pointer;
  padding: 1.2rem 0;
  font-size: 1.05rem;
  border: 2px dashed #b490ca;
  transition: background 0.2s;
}

.file-label:hover {
  background: #ddd6f3;
}

.file-label input[type="file"] {
  display: none;
}

input, textarea, button {
  border-radius: 8px;
  border: none;
  outline: none;
  padding: 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: #f7f8fc;
}

button {
  background: linear-gradient(90deg, #5ee7df, #b490ca 80%);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 rgba(180, 144, 202, 0.08);
  transition: background 0.2s, transform 0.1s;
}

button:hover {
  background: linear-gradient(90deg, #b490ca, #5ee7df 80%);
  transform: translateY(-2px);
}

#status {
  margin-top: 1.2rem;
  color: #3b3054;
  font-weight: 500;
  min-height: 26px;
}

@media (max-width: 450px) {
  .container {
    width: 97vw;
    padding: 1.3rem;
  }
  h1 { font-size: 1.3rem; }
}
