@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
    color: #3c4858;
    font-weight: bold;
    text-align: center;
}

p {
    margin-bottom: 20px;
    color: #3c4858;;
    font-weight: 300;
    font-size: 18px;
}

b {
    font-weight: 700;
}

label {
    color: #3c4858;
    font-weight: 700;
    font-size: 18px;
}

.btnBlue {
	cursor: pointer;
    border-radius: 3px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 33px;
    padding-right: 33px;
    color: #fff;
    background-color: #336799;
    position: relative;
    margin: 10px 1px;
    margin-bottom: 40px;
    border: none;
    white-space: normal;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    box-shadow: 0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0;
    transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);
}

.btnBlue:hover {
    box-shadow: 0 14px 26px -12px rgba(33,66,255,0.42),0 14px 23px 0 rgba(0,0,0,0.12),0 14px 10px -5px rgba(33,66,255,0.2);
}


.btnBlueSmall {
	cursor: pointer;
    border-radius: 3px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 33px;
    padding-right: 33px;
    color: #fff;
    background-color: #336799;
    position: relative;
    margin-bottom: 40px;
    border: none;
    white-space: normal;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 300;
    box-shadow: 0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0;
    transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);
}

.btnBlueSmall:hover {
    box-shadow: 0 14px 26px -12px rgba(33,66,255,0.42),0 14px 23px 0 rgba(0,0,0,0.12),0 14px 10px -5px rgba(33,66,255,0.2);
}

.klantenserviceBtn {
	height: 280px;
    width: 280px;
    margin: 10px;
}

.klantenserviceBtnBig {
	height: 320px;
    width: 320px;
    margin: 10px;
}

.textboxSmall {
    height: 40px;
    padding: 0 6px;
    width: 300px;
    color: #3c4858;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
    font-weight: 300;
    transition: 0.2s;
}

.textboxSmall:focus {
    border-bottom: 2px solid #336799;
}

.textboxNormal {
    height: 40px;
    padding: 0 6px;
    width: 100%;
    color: #3c4858;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
    font-weight: 300;
    transition: 0.2s;
}

.textboxNormal:focus {
    border-bottom: 2px solid #336799;
}

.textboxBig {
    padding: 0 6px;
    width: 100%;
    height: 200px;
    color: #3c4858;
    border: none;
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
    font-weight: 300;
    transition: 0.2s;
}

.textboxBig:focus {
    border-bottom: 2px solid #336799;
}

.errorNotice {
    border-color: red;
    border-style: solid;
    border-width: 2px;
    padding: 0 6px;
    width: 100%;
    margin-bottom: 20px;
    color: #3c4858;
    font-weight: 300;

}

.status {
    color: white;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    margin: auto;
    font-weight: 700;   
}