* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0f14;
    color: white;
    overflow: hidden;
}

/* animated background */

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.65;
    animation: move 14s infinite alternate ease-in-out;
}

.blob1 {
    background: #0a84ff;
    top: -150px;
    left: -150px;
}

.blob2 {
    background: #6a5cff;
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

@keyframes move {
    from {
        transform: translate(0,0) scale(1);
    }
    to {
        transform: translate(120px,90px) scale(1.25);
    }
}

/* glass card */

.card {
    position: relative;
    z-index: 1;
    width: 360px;
    padding: 40px 30px;
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.logo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 25px;
}

.input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
}

.input:focus {
    border-color: #0a84ff;
    box-shadow: 0 0 0 2px rgba(10,132,255,0.25);
}

.button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg,#0a84ff,#5e5ce6);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10,132,255,0.4);
}

.link {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.7;
    text-decoration: none;
    color: #9ecbff;
}

.footer {
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
    margin-top: 18px;
}

/* dashboard */

.dashboard {
    width: 900px;
}

.panel {
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
