/* ================================
   RESET & BASE
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #020617, #020617);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   CONTAINER
================================ */
.container {
    width: 100%;
    max-width: 520px;
    background: #020617;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid #1e293b;
}

/* ================================
   TYPOGRAPHY
================================ */
h1 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 28px;
}

/* ================================
   FORM ELEMENTS
================================ */
label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #38bdf8;
    margin-bottom: 6px;
    margin-top: 14px;
}

input[type="file"] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background: #020617;
    color: #cbd5f5;
    border: 1px dashed #334155;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

input[type="file"]:hover {
    border-color: #38bdf8;
}

/* ================================
   BUTTONS
================================ */
.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

button {
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ================================
   STATUS BOX
================================ */
textarea {
    width: 100%;
    min-height: 70px;
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #020617;
    color: #e5e7eb;
    border: 1px solid #1e293b;
    resize: none;
    font-size: 14px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 600px) {
    .container {
        padding: 24px;
    }

    .buttons {
        grid-template-columns: 1fr;
    }
}
