@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@media (min-width:350px) and (max-width:450px) {
    .naam-veld, .email-veld, .bod-veld {
        border-width: 1px;
        border-radius: 5px;
        border-color: var(--secondary-color);
        border-style: solid; 
        width: 350px;
    }  
}
:root {
	--primary-color: #E8592A;
    --secondary-color: #FB6939;
    --background-color: black;
    --text-color: white;
}
* {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-family: "Albert-sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
}
body {
    background-color: var(--background-color);
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    margin: 0 auto;
    z-index: 1;
    text-align: center;
}
.container-inhoud {
    padding: 60px 70px;
    background: rgba(100, 100, 100, 0.12);
    border-radius: 25px;
    box-shadow: 0 4px 50px rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(23, 23, 23, 0.02);
    max-width: 100%;
}   
.info-kolom {
    align-content: center;
}
h1 > strong {
    color: var(--primary-color);
    font-size: 65px;
    font-weight: 900;
}
h1 {
    font-size: 40px;
    font-weight: 900;
}
h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 50px;
    padding-top: 30px;
}
p {
    margin: 15px 0;
}
p > strong {
    font-weight: bold;
}
input {
    padding: 5px 10px;
    width: 250px;
    border: none;
    background-color: transparent;
}
.naam-veld, .email-veld, .bod-veld {
    border-width: 1px;
    border-radius: 5px;
    border-color: var(--secondary-color);
    border-style: solid; 
}   
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
button {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    color: white;
    border-radius: 47px;
    border-width: 3px;
    border-style: solid;
    padding: 8px 17px;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 700;
    width: max-content;
    align-self: flex-end;
}
button:hover {
    background-color: transparent;
    transition: 0.5s;
    cursor: pointer;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.error, .errors {
    color: red;
}
.success {
    color: green;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
.grecaptcha-badge {
    display: none !important;
}