@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;
    }
}
.registerbox {
    width: 360px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 20px;
    margin: 8% auto ;
    text-align: center;
}
.registerbox h1{
    color:#1c8adb;
    margin-bottom: 5px;
}
.registerbox .error-message {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: rgb(248, 147, 147);
}
.registerbox a {
    text-decoration: none;
    color: blue;
    font-weight: 500;
}
.registerbox .succes-message {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: lightgreen;
}
.registerbox .succes-message h4 {
    font-size: 15px;
    font-weight: 520;
}
.registerbox .succes-message a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 550;
    color: #00265f;
}
.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);  
}
label {
    float: left;
    margin-bottom: -15px;
    z-index: 5;
}
.registreer-btn{
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    font-size: 15px;
    margin: 10px 0;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #21afde;
}
.registreer-btn:hover {
    background-color: #1c8adb;
}

/* .facebook-btn{
    background-color: #1c8adb;
} */

hr{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
}
/* .of{
    background: #fff;
    width: 30px;
    margin: -20px auto 10px;
} */
img {
    width: 70px;
    margin-top: -50px;
}