/* BODY */
body {
    margin: 0;
    padding: 0;
    background: #08111f;
    font-family: "Poppins", sans-serif;
    color: #dce7ff;
}

/* CENTER BOX FIX - proper centering */
.center-box {
    width: 500px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

/* CARD BOX */
.card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

/* HEADING CENTER FIX */
.card h2 {
    text-align: center !important;
    width: 100%;
    margin: 0 auto 25px auto;
}

/* INPUTS */
.card input,
.card textarea,
.card select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    box-sizing: border-box;
}

/* FIX TEXTAREA */
textarea {
    resize: none;
}

/* MAIN SUBMIT BUTTON */
.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #007bff, #00eaff);
    border: none;
    border-radius: 8px;
    margin-top: 14px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/* BUTTON ROW */
.btn-row {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* CLEAR BUTTON */
.clear-btn {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #c9d8ff;
    cursor: pointer;
    width: 100%;
}

/* TRACK BUTTON */
.track-btn {
    padding: 12px;
    border-radius: 8px;
    background: #009dff;
    border: none;
    color: white;
    cursor: pointer;
    width: 100%;
}

/* INFO TEXT */
.info {
    margin-top: 12px;
    font-size: 14px;
    color: #9ec6ff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .center-box {
        width: 92%;
        margin: 20px auto;
    }

    .card {
        padding: 18px;
    }

    .btn-row {
        flex-direction: column;
    }

    .btn-row button {
        width: 100% !important;
    }
}

/* PRO HERO SECTION */
.hero-pro {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
}

.hero-title span {
    background: linear-gradient(90deg, #00eaff, #2d7dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(0, 195, 255, 0.45);
}

.hero-subtitle {
    color: #b9c9ff;
    font-size: 15px;
    margin-top: 6px;
    opacity: 0.85;
}

.hero-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00eaff);
    margin: 14px auto 0;
    border-radius: 10px;
    animation: underlineGlow 2s infinite ease-in-out;
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 5px #00eaff;
    }

    50% {
        box-shadow: 0 0 18px #00eaff;
    }

    100% {
        box-shadow: 0 0 5px #00eaff;
    }
}

/* Mobile RESPONSIVE */
@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-underline {
        width: 60px;
    }
}

/* FIX SELECT DROPDOWN OPTIONS */
select option {
    background: #0f1a2b !important;
    color: #ffffff !important;
}

/* Dropdown hover color */
select option:hover {
    background: #1e2c45 !important;
}