html {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F6F8FA;
    color: #1F2937;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: #374151;
    text-decoration: none;
}

a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

button,
input[type="submit"] {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
}

.Main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0F172A, #1E293B);
}

.nav-link {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 14px;
}

.linken {
    color: #2088ff;
}

.mid-container {
    background: #F6F8FA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    padding: 10px;
}

.aanmeld-box {
    color: #1F2937;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    max-height: 90%;
    overflow-y: auto;
    border: 1px solid #cbd5e1;
}

.aanmeld-box form {
    color: #1F2937;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-input {
    width: 100%;
    box-sizing: border-box;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #cbd5e1;
    background: #F3F4F6;
    color: #1F2937;
}

.form-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-field {
    flex: 1 1 60px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-label {
    color: #1F2937;
    display: block;
    margin-bottom: 0;
}

.form-voorwaarden {
    color: #4B5563;
    margin-bottom: 15px;
    font-size: small;
    display: flex;
    gap: 8px;
    align-items: center;
}

.form-inlog {
    color: #4B5563;
    margin-bottom: 5px;
    font-size: small;
    text-align: center;
    display: block;
    width: 100%;
}

.form-submit {
    padding: 10px;
    margin-bottom: 5px;
    background: #374151;
    color: white;
    border: 2px solid #374151;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
    align-self: center;
}

.form-submit:hover {
    background: #475569;
}

.footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
    margin-top: auto;
}

.footer-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-column,
.footer-column2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
}

.footer-column h3 {
    margin: 0 0 5px 0;
}

.footer-column a {
    color: rgb(172, 171, 171);
    text-decoration: none;
    font-size: 12px;
}

.footer-column a:hover {
    text-decoration: underline;
    color: white;
}

.footer p {
    font-size: 12px;
    margin: 0;
    color: rgb(172, 171, 171);
}