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

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

body {
    background-color: #0d0d0d;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

/* Achtergrond met subtiele lijnen en kleurverlopen */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent 30%),
                linear-gradient(to left, rgba(255, 255, 255, 0.05), transparent 30%),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 50%);
    background-size: cover;
    z-index: -1;
}

/* Container gecentreerd */
.container {
    text-align: center;
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px cyan, 0 0 20px cyan;
}

/* Login-box gecentreerd */
.login-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    width: 400px;
    backdrop-filter: blur(15px);
    position: absolute;
    top: 42%; /* Hoger geplaatst */
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Inputvelden met labels erboven */
label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 15px; /* Kleiner gemaakt om meer ruimte te besparen */
}

.input-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: cyan;
}

input {
    width: 100%;
    padding: 12px;
    padding-left: 40px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Sign in knop */
.btn {
    width: 100%;
    padding: 12px;
    background: cyan;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s ease-in-out;
    margin-bottom: 20px; /* Meer ruimte voor footer */
}

.btn:hover {
    background: #00e6e6;
    transform: scale(1.05);
}

/* Copyright footer */
footer {
    position: absolute;
    bottom: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: gray;
}

footer p {
    margin: 0;
}
