/* ==========================================
   EndiCloud Landing Page v1.0
========================================== */

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

:root {

    --bg: #0a0a0a;

    --glass: rgba(18,18,18,.82);

    --border: rgba(255,255,255,.05);

    --cyan: #20d4ff;

    --cyan-light: #52e2ff;

    --text: #ffffff;

}

body {

    background: var(--bg);

    color: var(--text);

    font-family: "Segoe UI", sans-serif;

    height: 100vh;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

}

/* ==========================================
   Background
========================================== */

#background {

    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 0;

    pointer-events: none;

}

/* ==========================================
   Hero
========================================== */

.hero {

    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 28px;

}

/* ==========================================
   Logo
========================================== */

.logo {

    width: 110px;

    height: auto;

    animation: logoPulse 4s ease-in-out infinite;

}

/* ==========================================
   Title
========================================== */

h1 {

    font-size: 4rem;

    font-weight: 700;

    letter-spacing: -.03em;

}

/* ==========================================
   Login Button
========================================== */

.login-button {

    margin-top: 10px;

    padding: 18px 44px;

    border-radius: 22px;

    text-decoration: none;

    color: white;

    font-size: 1rem;

    font-weight: 600;

    background: var(--glass);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid var(--border);

    transition:

        transform .28s ease,

        box-shadow .28s ease,

        border-color .28s ease,

        background .28s ease;

}

.login-button:hover {

    transform: translateY(-5px);

    background: rgba(24,24,24,.90);

    border-color: rgba(32,212,255,.24);

    box-shadow:

        0 0 0 1px rgba(32,212,255,.22),

        0 20px 48px rgba(32,212,255,.12);

}

/* ==========================================
   Logo Animation
========================================== */

@keyframes logoPulse {

    0% {

        transform: scale(1);

        filter:
            drop-shadow(0 0 0 rgba(32,212,255,0));

    }

    50% {

        transform: scale(1.04);

        filter:

            drop-shadow(0 0 12px rgba(32,212,255,.35))

            drop-shadow(0 0 28px rgba(32,212,255,.18));

    }

    100% {

        transform: scale(1);

        filter:
            drop-shadow(0 0 0 rgba(32,212,255,0));

    }

}