
.content {
    user-select: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.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;
}


.signup-form {
    display: flex;
    justify-content: center;
    flex-direction: row;
    position: relative;
    margin-bottom: 125px;
}

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

input {
    padding: 1em;
    margin: 1em;
    border: 1px solid #333;
    border-radius: 5px;
    width: 20em;
    display: block;
}

button {
    padding: 0.8em 1.2em;
    margin: 0.5em;
    border: none;
    border-radius: 10px;
    background-color: var(--bg-color);
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.tos-notice {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
    max-width: 20em;
    margin: 0.5em auto 1em auto;
    line-height: 1.5;
}

.tos-notice a {
    color: #2b6772;
    text-decoration: underline;
}

.tos-notice a:hover {
    color: #1d4a52;
}

.create-account {
    width: 300px;
    text-align: left;
    margin-right: 5em;
}

.creation {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
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-height: 700px) {
    .content{
        height: auto;
    }
    .creation {
        margin-top: 2em;
        flex-direction: column;
    }
    .create-account {
        margin-right: 0;
    }
    h1{
        font-size: 1.5rem;
        text-align: center;
    }
    .create-account {
        text-align: center;
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    h1{
        font-size: 1.5rem;
        text-align: center;
    }
    .creation {
        flex-direction: column;
    }
    .create-account {
        margin-right: 0;
        margin-bottom: 2em;
        text-align: center;
        width: 100%;
    }
    .signup-form {
        flex-direction: column;
    }
    .signup-form-container {
        padding: 0;
    }
    .login-form-container {
        padding: 0;
    }
    .login-form {
        flex-direction: column;
    }
    .content{
        height: auto;
    }
}