
.content {
    user-select: none;
    height: calc(100vh - 250px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f3f6f9;
}

.creation {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    background-color: #fff;
    border-radius: 20px;
}

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


.signup-form {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.signup-form-container {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

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

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

.creation {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

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