@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

@media (prefers-color-scheme: dark) {
    body {
    background-color: #0d0d0d !important;
    }

    h3 {
    color: #f1f1f1 !important;
    }

    form input {
        border: #333 2px solid !important;
    }

    form label {
        color: grey !important;
    }

    #e-mail-input {
        background-color: #0d0d0d !important;
        color: #f1f1f1 !important;
    }

    .checkbox-container label {
        color: #f1f1f1 !important;
    }

    #newsletter {
        outline: #333 2px solid !important;
    }

    #newsletter h3 {
        color: #f1f1f1 !important;
    }

    .checkbox:checked {
        background-color: #124299 !important;
        border-color: #124299 !important;
    }

    .checkbox:checked::after {
        content: "✔";
        position: absolute;
        top: 0;
        left: 3px;
        color: white !important;
        font-size: 8px;
    }

    #alert {
        background-color: #2c0b0e !important;
        outline-color: #842029 !important;
    }

    #alert h3 {
        color: #ea868f !important;
    }

    #close-icon {
        width: 16px !important;
        opacity: 0.5 !important;
        cursor: pointer !important;
    }

    #close-icon-black {
        display: none !important;
    }
}

* {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

#close-icon {
    display: none !important;
}

#close-icon-black {
    width: 16px !important;
    opacity: 0.5 !important;
    cursor: pointer !important;
}

#alert {
    width: 100%;
    outline: #f1aeb5 2px solid;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    background: #f8d7da;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#alert h3 {
    font-size: 16px;
    color: #58151c;
}

header {
    width: 100%;
    height: 60px;
    background-color: #09214D;
    position: sticky;
}

.wrapper {
    width: 708px;
}

h3 {
    font-size: 20px;
    color: #030B19;
}

form select {
    height: 46px;
    width: 100%;
    box-sizing: border-box;
    border: #D3D3D3 2px solid;
    padding: 10px;
    margin-top: 10px;
    font-weight: 400;
}

.checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}

.checkbox-container label {
    margin-top: 0px;
    color: #030B19;
}

.checkbox {
    appearance: none;         /* Verwijder standaardstijl */
    -webkit-appearance: none; /* Voor Safari */
    width: 16px;
    height: 16px;
    border: 2px solid #D3D3D3;
    border-radius: 6px;       /* ← verander dit voor ronde hoeken */
    cursor: pointer;
    position: relative;
    accent-color: #124299;
    margin-top: 0px;
    margin-right: 10px;
    border-radius: 0px;
    padding: 0;
}

.checkbox:checked {
  background-color: #124299;
  border-color: #124299;
}

.checkbox:checked::after {
  content: "✔";
  position: absolute;
  top: 0;
  left: 3px;
  color: white;
  font-size: 8px;
}

#e-mail-input {
    color: #030B19;
}

form label {
    font-size: 14px;
    font-weight: 400;
    color: grey;
    margin-top: 20px;
    display: block;
}

form input {
    height: 46px;
    width: 100%;
    box-sizing: border-box;
    border: #D3D3D3 2px solid;
    padding: 10px;
    margin-top: 10px;
    font-weight: 400;
}

form button {
    height: 46px;
    padding: 10px;
    flex: auto;
    background-color: #124299;
    color: white;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
}

footer {
    height: 250px;
    width: 100%;
    background-color: #09214D;
    margin-top: 20px;
}

@media (max-width: 748px)  { /* smartphones, Android phones, landscape iPhone */ 
    .wrapper {
        width: calc(100% - 40px);
    }
}