/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: "Inter", Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* AMOLED Liquid Glass Background */
.bg-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/icons/bg.svg') center/cover no-repeat;
    opacity: 0.35;
    z-index: -1;
}

/* MAIN CONTAINER */
.container {
    width: 92%;
    max-width: 500px;
    margin: 60px auto;
    padding: 28px 24px;

    backdrop-filter: blur(28px);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* FORM LABEL */
label {
    font-size: 17px;
    font-weight: 500;
    display: block;
    margin-top: 18px;
}

/* INPUT */
input {
    width: 100%;
    padding: 15px;
    margin-top: 8px;

    border: none;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 17px;

    transition: 0.2s;
}

input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 2px #00c8ff70;
}

/* PHONE INPUT GROUP */
.phone-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.pre {
    padding: 14px 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    font-size: 17px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 16px;
    margin-top: 25px;

    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0094ff, #00c8ff);

    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;

    transition: 0.25s;
}

button:hover {
    background: linear-gradient(135deg, #00aaff, #00e0ff);
    transform: scale(1.02);
}

button:active {
    transform: scale(0.98);
}

/* TABLE (ADMIN PAGE) */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.04);
    border-radius: 15px;
    overflow: hidden;
    font-size: 15px;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background: rgba(255,255,255,0.12);
    font-size: 16px;
}

tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}

/* EXTRA RESPONSIVE RULES */
@media (max-width: 480px) {
    .container {
        padding: 22px 18px;
        margin: 40px auto;
    }

    input, button {
        font-size: 16px;
        padding: 14px;
    }

    .pre {
        padding: 12px 14px;
        font-size: 15px;
    }

    label {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    input, button {
        font-size: 15px;
    }

    .phone-box {
        gap: 6px;
    }
}
