#register {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    gap: 1rem;
    position: relative;
    z-index: var(--z-floating);
    padding-right: .5rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.row {
    display: flex;
    justify-content: space-between;
    margin: .5rem 0;
}

.row input {
    width: 25vw;
}

.row label {
    color: var(--text-or-stroke-color);
    align-self: center;
}

output {
    font-weight: bold;
    color: red;
}

input:invalid {
    border: 2px solid red;
}

.password_invalid {
    color: red;
}

.password_valid {
    color: green;
}

#password_requirements_message p {
    margin: 0;
}