/* ----- INTEGRATIE WEBFONTS ----- */

@import url(https://fonts.googleapis.com/css?family=Lato:300|Roboto+Slab:300);

/* ---- RESET INTEGREREN ---- */

@import url(reset.css);

/* ----- ALGEMENE OPMAAK ---- */

#container {
    margin: 0 auto;
}

p,
a {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    font-weight: light;
    text-align: center;
    color: #fff8df;
    line-height: 150%;
}

h1 {
    font-family: 'Lato', serif;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: #292d34;
    line-height: 150%;
    padding-top: 2em;
}

.cursive {
    font-style: italic;
}

.logo {
    padding-top: 150px;
}

.first-text {
    padding-top: 4em;
}


/* ----- OPMAAK FORMULIEREN ----- */

#container #main form {
    margin-left: 40px;
}

label {
    width: 130px;
    float: left;
    display: block;
}

#container #main label {
    font-family: 'Lato', serif;
    font-size: 14px;
}

.label_rechts {
    float: none;
    display: inline;
}

input,
select,
textarea {
    margin: 0 0 0.5em 0px;
    font-size: 15px;
    font-family: 'Lato', serif;
    font-size: 14px;
}

input[type=text],
input[type=password] {
    display: block;
    width: 300px;
    height: 25px;
    margin: 2em auto 1em auto;
    border: none;
    padding: 5px;
}

.btn-grad {
    background-image: linear-gradient(to right, #fcdb80, #a66c23);
}

.btn-grad {
    display: block;
    border: none;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    width: auto;
    margin: 2em auto 1em auto;
    padding: 0.9rem 1.8rem;
    font-family: 'Lato';
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
}

.btn-grad:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}


/* ----- OPMAAK button ----- */


/* .btn {
    width: auto;
    margin: 2em auto 1em auto;
    display: block;
    padding: 0.9rem 1.8rem;
    font-family: 'Lato';
    font-size: 16px;
    letter-spacing: 0.1em;
    color: white;
    border: none;
    cursor: pointer;
    position: relative;
    background: linear-gradient(to right, #fcdb80, #a66c23);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #525b6a;
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
} */