body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #868686;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    margin: 0;
    min-height: 100vh;
    background-image: url(/public/patern.svg);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: contain;

}

.wrapper {
    max-width: 1142px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
}

@media (max-width:801px) {
    .wrapper {
        padding: 0 20px;
    }

    .formulier,
    .melding {
        width: 100%;
    }
}

header {
    padding-top: 60px;
    padding-bottom: 35px;
}

main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.formulier,
.melding {
    width: 480px;
}

.succes .melding {
    width: 580px !important;
}

p {
    font-size: 20px;
    line-height: 46.2px;
}

h1 {
    font-size: 55px;
    line-height: 75px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #2E2E2E;
}

h2 {
    font-size: 28px;
    line-height: 46px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #2E2E2E;
}

h3 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #2E2E2E;
}

/** Formulier **/
.form-field {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 13px;
    padding-bottom: 20px;
}

input {
    padding: 0.3692rem 1rem 0.3692rem 1rem;
    font-size: 1rem;
    line-height: 2.2em;
    color: #2E2E2E;
    border-radius: 4px;
    border: solid 1px #EEE8FD;
}
select {
    padding: 0.3692rem 1rem 0.3692rem 1rem;
    font-size: 1rem;
    line-height: 2.2em !important;
    color: #2E2E2E;
    border-radius: 4px;
    min-height: 50px;
    border: solid 1px #EEE8FD;
    appearance: none;
    background: url(/public/dropdown-arrow.svg) no-repeat;
    background-position: right 1rem center;
    width: 100%;
}
.two {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.form-field {
    width: 100%;
    margin-bottom: 30px;
}

button {
    padding: 0.4375rem 1.625rem 0.4375rem 1.625rem;
    border: none;
    border-radius: 1000px;
    font-size: 1rem;
    line-height: 2.2rem;
    color: #fff;
    background: #5E21E5;
    cursor: pointer;
}

.error {
    font-size: 15px;
    line-height: 20px;
    color: red;
}

.email {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none !important;
    color: #2E2E2E;
}

a {
    text-decoration: none !important;
}

/***tooltip****/
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;

}

.tooltip img {
    width: 10px;
    height: 10px;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: #EEE8FD;
    color: #868686;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    border: solid 1px #D4C4FA;
    line-height: 22px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.2s;
}


/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* logs table */
table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
    
}
th {
    padding: .5rem .8rem;
    border-bottom: solid 1px #2E2E2E;
    color: #2E2E2E;
}
td {
    border-bottom: solid 1px #cccccc;
    padding: .8rem;
}