/* SRP: Upload page shell — page frame, header, body, form structure, inputs */

.upload-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 80px;
}

.upload-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  position: relative;
}

.upload-back {
  position: absolute;
  left: 0;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.12s;
}
.upload-back:hover { color: var(--text); }

.upload-header-logo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}

.upload-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.upload-body h2 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text);
}

.upload-body .upload-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
  text-align: center;
}

.upload-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upload-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.upload-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.upload-input {
  background: var(--card);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
}
.upload-input:focus { border-color: var(--accent); }
.upload-input::placeholder { color: rgba(255, 255, 255, 0.25); }
