/* =================================================
   Verzoekbox v2 – Verzoekformulier
   ================================================= */

/* ===============================
   Basis
   =============================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: radial-gradient(circle at top, #1b2128, #121417 70%);
    color: #f1f5f9;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding: 80px 20px;
    min-height: 100vh;

    font-size: 17px;
}

/* ===============================
   Container
   =============================== */

.container {

    width: 100%;
    max-width: 700px;

    background: #1e2329;

    padding: 45px;

    border-radius: 20px;

    box-shadow: 0 25px 70px rgba(0,0,0,0.75);
}

/* ===============================
   Titels
   =============================== */

h1,
h2,
h3 {

    color: #9ed0ff;

    margin-top: 0;

    text-align: center;

    letter-spacing: 0.5px;
}

/* ===============================
   Status melding
   =============================== */

.message {

    padding: 16px;

    margin: 25px 0;

    border-radius: 12px;

    font-weight: 600;

    background-color: #27313a;

    color: #e6edf3;

    text-align: center;

    font-size: 16px;
}

/* ===============================
   Formulier
   =============================== */

form {
    margin-top: 30px;
}

/* Labels */

label {

    display: block;

    font-size: 15px;

    margin-bottom: 8px;

    color: #c9d4df;

    font-weight: 500;
}

/* ===============================
   Inputs
   =============================== */

input,
textarea,
select {

    width: 100%;

    padding: 15px 16px;

    margin-bottom: 20px;

    border-radius: 14px;

    border: 1px solid #3c4652;

    background-color: #232a31;

    color: #ffffff;

    font-size: 16px;

    transition: all 0.2s ease;
}

/* Placeholder */

input::placeholder,
textarea::placeholder {

    color: #b8c2cc;

    opacity: 1;
}

/* Focus */

input:focus,
textarea:focus,
select:focus {

    outline: none;

    border-color: #9ed0ff;

    box-shadow: 0 0 0 3px rgba(158,208,255,0.25);
}

/* Tekstveld */

textarea {

    min-height: 140px;

    resize: vertical;

    line-height: 1.6;
}

/* ===============================
   Verzenden knop
   =============================== */

button {

    display: block;

    margin: 20px auto 0 auto;

    padding: 14px 32px;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    border: none;

    background: linear-gradient(135deg,#31404f,#25313c);

    color: #ffffff;

    transition: all 0.25s ease;

    box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

button:hover {

    transform: translateY(-2px);

    box-shadow: 0 18px 50px rgba(0,0,0,0.8);
}

/* ===============================
   Live banner
   =============================== */

.live-banner {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: rgba(46,204,113,0.12);

    border: 1px solid rgba(46,204,113,0.5);

    color: #b4ffcf;

    padding: 14px;

    margin-bottom: 30px;

    border-radius: 12px;

    font-weight: 600;

    box-shadow: 0 0 30px rgba(46,204,113,0.2);
}

.live-banner::before {

    content: "●";

    color: #2ecc71;

    animation: pulse 1.5s infinite;
}

/* ===============================
   Offline banner
   =============================== */

.offline-banner {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: rgba(255,77,77,0.12);

    border: 1px solid rgba(255,77,77,0.5);

    color: #ffb3b3;

    padding: 14px;

    margin-bottom: 30px;

    border-radius: 12px;

    font-weight: 600;

    box-shadow: 0 0 30px rgba(255,77,77,0.2);
}

.offline-banner::before {

    content: "●";

    color: #ff4d4d;
}

/* ===============================
   Animatie
   =============================== */

@keyframes pulse {

    0% { opacity: 1; }

    50% { opacity: 0.4; }

    100% { opacity: 1; }
}

/* ===============================
   Links
   =============================== */

a {

    color: #9ed0ff;

    text-decoration: none;
}

a:hover {

    text-decoration: underline;
}