/* form.css */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    color: #f0f0f0;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 90vw;
    max-width: 400px;
    padding: 2vmin;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h2 {
    font-size: clamp(1.5rem, 4vmin, 2rem);
    font-weight: 700;
    color: #ffd700;
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 3vmin;
    color: #e0e0e0;
    font-size: clamp(1rem, 2.5vmin, 1.2rem);
    width: 100%;
}

label {
    font-size: clamp(1rem, 2.5vmin, 1.2rem);
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1vmin;
}

textarea {
    width: 100%;
    padding: clamp(0.6rem, 2vmin, 1rem);
    font-size: clamp(0.9rem, 2.5vmin, 1.1rem);
    border: 1px solid #6b21a8;
    border-radius: 0.75rem;
    background-color: #2a2a2a;
    color: #f0f0f0;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 0 5px rgba(107, 33, 168, 0.1);
    min-height: 27vmin;
    resize: vertical;
}

button#uploadButton,
button[type="submit"] {
    padding: clamp(0.8rem, 2.5vmin, 1.2rem);
    font-size: clamp(1rem, 2.5vmin, 1.2rem);
    font-weight: 700;
    background: linear-gradient(90deg, #6b21a8, #9333ea);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
    margin-top: 2vmin;
    width: 100%;
    text-align: center;
}

#uploadStatus {
    font-size: clamp(0.8rem, 2vmin, 1rem);
    color: #ffd700;
    margin-top: 1vmin;
}