/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== BODY ===== */
body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #0f2027, #000000 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
}

/* ===== CARD ===== */
.container {
    width: 420px;
    padding: 30px 35px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    box-shadow:
        0 0 25px rgba(0, 255, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== TITLE ===== */
h2 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

/* ===== LABELS ===== */
label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #cfd8dc;
}

/* ===== FILE INPUT ===== */
input[type="file"] {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    color: #eaeaea;
    cursor: pointer;
}

input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #00f5ff, #0077ff);
    border: none;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-weight: 600;
}

/* ===== SELECT ===== */
select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    color: #eaeaea;
    outline: none;
}

select:focus,
input:focus {
    border-color: #00f5ff;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.6);
}

/* ===== SMALL TEXT ===== */
small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #9ea7ad;
}

/* ===== BUTTON ===== */
button {
    margin-top: 22px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #00f5ff, #0077ff);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 18px rgba(0, 245, 255, 0.5);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.9);
}

/* ===== FOOTER TEXT ===== */
.footer {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: #8aa0a8;
}
