.signup-login {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-signup-login {
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.background-signup-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-form);
    border-radius: 1.2rem;
    border: #FFF 2px solid;
    height: min(100% - 20px, 500px);
    width: min(100vw - 20px, 1000px);
    margin-inline: auto;
}

.background-signup-login form {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-between;
    width: min(100% - 2rem, 500px);
    margin-inline: auto;
}

.input-content {
    width: 100%;
}

.form-input {
    font-weight: 700;
    color: #FFF;
    background: #050505;
    width: 100%;
}

.form-input::placeholder {
    opacity: .8;
}

.input-content:nth-child(n+3) {
    width: calc(50% - .5em);
}

.submit {
    background: var(--backgorund-button);
    font-weight: 800;
    font-size: 2rem;
    width: 100%;
    color: var(--text-button);
}

.submit:hover {
    cursor: pointer;
}

.input-error {
    color: var(--error-text);
}

.login-text > a {
    font-weight: bold;
}

@media screen and (max-width: 600px) {

    .background-signup-login {
        background: none;
        border: none;
    }

}