<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.register-form .flex {
    display: flex;
    gap: 40px;
}

.register-form .flex &gt; div {
    width: 100%;
    position: relative;
}

#RegisterForm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

#RegisterForm .toggle {
    background: none;
    border: none;
    color: black;
    font-weight: 600;
    position: absolute;
    right: .75em;
    top: 3.2em;
    z-index: 9;
}

#RegisterForm input.error {
    border-color: red;
}

#RegisterForm label.error {
    display: block;
    margin-top: 5px;
    color: red;
}

#RegisterForm textarea {
    width: 100%;
    resize: vertical;
}

#RegisterForm .checkboxes {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

#RegisterForm .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

#response-message {
    display: grid;
    grid-template-columns: 20% 80%;
    margin-top: 20px;
}

#response-message .bold {
    font-weight: bold;
}

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

}
</pre></body></html>