
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

    html, body{
        padding: 0;
        margin: 0;
        /* box-sizing: border-box; */
        font-family: 'Open Sans', sans-serif;

        /* Zoomen uit */
        touch-action: manipulation !important;

        /* Selecteren uit */
        user-select: none !important;
        width: 100%;

    }

    p {
        margin: 0;
    }


/* splash */

.splash{
    background-color: #ffcd00;
    height: 100vh;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.splash h1 {
    color: white;
    animation: animateImage 2s forwards;
    text-shadow: 0px 10px 20px rgba(0,0,0,0.35);
}

.splash-logo{
    max-width: 125px;
    margin-bottom: 30px;
    border-radius: 30px;
    animation: animateImage 2s forwards;
    box-shadow: 0px 10px 50px -10px rgba(0,0,0,0.50);
}

.login-form{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginput{
    width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-weight: 600;
}

.loginput:focus {
    outline: none;
}

.login-button{
    width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: #262626;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

@keyframes animateImage {
    0% {
        filter: blur(20px);/* Initial blur */
        transform: scale(2); /* Initial scale */
    }
    100% {
        filter: blur(0px); /* No blur */
        transform: scale(1); /* Scale of 1.5 */
    }
}


@keyframes animatetext {

    0% {
        filter: blur(20px); /* Initial blur */
        transform: translateY(-100px);
    }
    100% {
        filter: blur(0px); /* No blur */
        transform: translateY(0px);
    }
}


.form-class{
    animation: animatetext 2s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sign-up{
    padding-top: 15px;
    color: #262626;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}