/* Global */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

/* ================= LOGIN PAGE ================= */
.login-body {
    height: 100vh;
    background: radial-gradient(circle at top, #0f172a, #020617);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-body::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #2563eb, transparent);
    filter: blur(120px);
    animation: move 8s infinite alternate;
}

.box {
    position: relative;
    width: 320px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: white;
    cursor: pointer;
}

/* ================= INDEX PAGE ================= */
.index-body {
    height: 100vh;
    background: radial-gradient(circle at center, #0f172a, #020617);
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-body::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2563eb, transparent);
    filter: blur(150px);
    animation: move 10s infinite alternate;
}

.container {
    text-align: center;
}

.title {
    font-size: 42px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.status {
    letter-spacing: 2px;
    color: #94a3b8;
}

.secure {
    color: #22c55e;
    font-weight: bold;
}

.user {
    color: #cbd5f5;
}

.line {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 15px 0;
}

/* ================= TECHNICAL PAGE ================= */
.tech-body {
    background: #f1f5f9;
    color: black;
}

header {
    background: linear-gradient(90deg, #2563eb, #1e3a8a);
    color: white;
    padding: 15px;
    text-align: center;
}

.tech-container {
    padding: 20px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tech-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Animation */
@keyframes move {
    from { transform: translate(-100px, -100px); }
    to { transform: translate(100px, 100px); }
}