@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cinzel', serif;
}

body {
    /* Donkerder, bijna zwart met een vleugje mist-grijs */
    background: radial-gradient(circle, #001529 0%, #000814 100%); 
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d1d1d1; /* Gebroken wit/zilver */
    overflow: hidden; 
    position: relative;
}

/* =========================================
   SKYRIM SMOKE EFFECT
   ========================================= */
.clouds-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    
    /* Rook-kleuren: zwart, grijs en heel transparant wit */
    background: 
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 50%, rgba(100, 100, 100, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    
    filter: blur(60px);
    /* De animatie is nu 'smoke' voor meer beweging */
    animation: smoke 20s infinite alternate linear;
}

/* =========================================
   DE LOGIN KAART (Minimalistisch & Transparant)
   ========================================= */
.login-container {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 0; 
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Logo & Tekst */
.logo {
    width: 180px; 
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    opacity: 1; 
}

h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 5px; 
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Formulier */
input {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 1rem;
    transition: 0.5s;
    letter-spacing: 1px;
}

input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid #fff;
    outline: none;
}

button {
    margin-top: 2rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #d1d1d1;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
}

button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* =========================================
   ANIMATIES
   ========================================= */
@keyframes smoke {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    50% { transform: scale(1.2) translate(-2%, -5%); opacity: 0.8; }
    100% { transform: scale(1.1) translate(3%, 2%); opacity: 0.5; }
}
