
.creation {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    background: #ffffff36;
    box-shadow: 0px 0px 7px -2px rgba(0, 0, 0, .1);
    border-radius: 20px;
}

h1 {
    font-size: 2.7rem;
    font-weight: 600;
}


.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.login-form-container {
    padding: 20px;
    border-radius: 10px;
}

input {
    padding: 1em;
    margin: 1em;
    border: 1px solid #b3b3b3;
    border-radius: 5px;
    width: 20em;
    display: block;
    width: calc(100% - 4rem);
}

button {
    padding: 1em;
    margin: 1em;
    margin-top: 0px;
    border: none;
    border-radius: 5px;
    background-color: var(--bg-color);
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid #b3b3b3;
    width: calc(100% - 2rem);
    margin-left: calc(1em - 8px);
}
.create-account {
    width: 300px;
    text-align: left;
    margin-right: 5em;
}

.creation {
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .1);
}

html {
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
}


@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

footer{
    background-color:transparent;
}
body {
    width: 100dvw;
    height: 100vh;
    background: linear-gradient(164deg, rgb(255, 0, 183), rgb(85, 252, 6), rgb(0, 66, 247), rgb(255, 0, 183)) 0% 0% / 350% 350%;
    animation: 16s ease 0s infinite normal none running gradient-animation;
}
header{
    background-color:transparent;
    border-bottom:none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffbf;;
    z-index: -1;
}
@media screen and (max-width: 1000px) {

    h1 {
        font-size: 1.3rem;
    }

    .creation {
        border: 1px solid #ccc;
    }
}