@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,600;0,900;1,300;1,400;1,700&display=swap');

:root {
    --gradient: linear-gradient (
    45deg,
    #6505ff,
    #d65db1,
    #ff6f91,
    #ff9671,
    #ffc75f,
    #f9f871
    );
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: linear-gradient(120deg, #85caf8ef, #fdcbfd);
    background-size: 500%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    animation: bg-animation 5s infinite alternate;
}
@keyframes bg-animation {
    0% {
        background-position: left;
    }
    100% {
        background-position: right;
    }
}

.loginbox {
    width: 360px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 20px;
    margin: 8% auto ;
    text-align: center;
}
.loginbox h1{
    color:#1c8adb;
    margin-bottom: 5px;
}
.loginbox .error-message {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: rgb(248, 147, 147);
}
.loginbox .succes-message {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: lightgreen;
}
.input-box{
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    border: 1px solid #999;
    outline: none;
    font-family: "montserrat", sans-serif;
}
.input-box:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.input-box:focus {
    background-color: #fff;
    border: 2px solid rgba(30, 85, 250, 0.47);  
}
/* werkt nog niet */
.loginbox input:invalid {
    animation: shake .3s;
}
@keyframes shake {
    25% { transform: translateX(4px) }
    50% { transform: translateX(-4px) }
    75% { transform: translateX(4px) }
}
/*  */

.login-btn{
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    font-size: 15px;
    margin: 5px 0;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #21afde;
}
.login-btn:hover {
    background-color: #1c8adb;
}
.facebook-btn{
    background-color: #1c8adb;
} 
a{
    margin-top: 10px;
    text-decoration: none;
}
hr{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}
.of{
    background: #fff;
    width: 30px;
    margin: -25px auto 10px;
} 
img {
    width: 70px;
    margin-top: -50px;
}
