*[clickable], button, a{
    cursor: pointer;
    user-select: none;
}
span{
    text-wrap: nowrap;
    display: block;
}

*{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.line{
    width: 100%;
    height: 3px;
    background: #364F1E;
}

.content{
    display: flex;
    padding: 70px 0px;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    background: linear-gradient(270deg, #ECEEE7 0.15%, #FFF 11.62%, #FFF 91.89%, #ECEEE7 99.87%);
}

*[link]{
    border-bottom: dotted 1px #62676c;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    color: #52575c;
}

*[link]:hover{
    border-bottom-color: rgba(255, 255, 255, 0);
}

a{
    text-decoration: none;
}

h1{
    color: #52575c;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

h2{
    color: #52575c;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

h3{
    color: #52575c;
    font-size: 20px;
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
}

p, label, input, textarea, li, a{
    color: #52575c;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-wrap: wrap;
}

.readonly{
    border-style: none;
    background: transparent;
    cursor: default;
}

input, textarea{
    border-style: solid;
    border-radius: 5px;
    border-width: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

@media only screen and (max-width: 400px) {
    h2{
        font-size: 24px;
    }
    p{
        font-size: 16px;
    }
}

/* Button */
button, input[type="submit"], a[button]{
    display: flex;
    width: auto;
    height: 57px;
    padding: 3px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #7b7b7b;
    background: transparent;

    color: #7b7b7b;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    text-wrap: nowrap;

    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover, a[button]:hover{
    border: 1px solid rgba(48, 25, 62, 0.9);
    color: color(srgb 0.3551 0.1963 0.5361);
    transform: scale(1.01);
}
/*  */


@media only screen and (max-width: 360px) {
    input[type="submit"], button, *[button]{
        font-size: 5vw;
    }
}


.melding{
    justify-self: center;
    padding: 20px;
    border-radius: 10px;
    border-style: solid;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-top: 15px;
    margin-right: 15px;
}

.fout{
    border-color: rgb(255, 0, 0);
    color: red;
}

.not-fout{
    border-color: color(srgb 0.3551 0.1963 0.5361);
    color: color(srgb 0.3551 0.1963 0.5361);
}

.autoMarginBig{
    padding: 0px 100px;
}

.autoMargin{
    padding: 0px 236px;
}

.autoMargin, .autoMarginBig{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    gap: 37px;
}

body{
    margin-bottom: 40px;
    overflow-x: hidden;
    max-width: 100vw;
}

@media only screen and (max-width: 1200px) {
    .autoMargin, .autoMarginBig{
        padding: 0px 75px;
    }
}

@media only screen and (max-width: 860px) {
    .autoMargin, .autoMarginBig{
        padding: 0px 15px;
    }
}