﻿.register-form {
    display: flex;
    justify-content: center;
    padding: 2.5em 0 2em 0;
}

    .register-form h1 {
        font-weight: 600;
        font-size: 32px;
        margin-top: 0;
        margin-bottom: 0.25em;
    }

    .register-form a {
        text-decoration: underline;
    }

    .register-form p {
        margin-top: 0;
        line-height: 1.5em;
    }

    .register-form h2,
    .register-form h3,
    .register-form h4 {
        margin: 0.5em 0 0 0;
    }

    .register-form form {
        display: flex;
        flex-direction: column;
        gap: 2em;
        padding: 2rem;
        border-radius: 1rem;
        width: 60%;
    }

    .register-form > form > p:first-of-type {
        margin-bottom: 0;
    }

    .register-form .register-form-section {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        border-bottom: 1px solid white;
        padding-bottom: 1.5em;
    }

    .register-form .login-container {
        display: flex;
        flex-direction: column;
        gap: 1em;
        min-width: 23em;
    }

    .register-form .login-field {
        display: flex;
        gap: 0.75em;
        align-items: center;
        flex-direction: column;
        align-items: start;
    }

        .register-form .login-field .login-label {
            font-weight: 600;
            font-size: 18px;
        }

        .register-form .login-field .primary-input {
            width: -webkit-fill-available;
        }

    .register-form form button {
        width: 20%;
        margin-top: 1.5em;
        justify-content: center;
        display: flex;
    }

    .register-form .checkbox-field {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .register-form .guidance-text > h3 {
        margin-bottom: 1em;
    }

    .register-form .guidance-text > p {
        margin: 0;
    }

    .register-form .checkbox-field .primary-input {
        width: 1.5em;
        height: 42px;
    }

    .register-form .checkbox-field .login-label {
        position: relative;
        top: 1px;
        font-weight: 400;
        font-size: 16px;
    }

    .register-form .remember-user-checkbox {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.25em;
    }

        .register-form .remember-user-checkbox input {
            height: 1.5em;
            width: 1.5em;
        }

@media (max-width: 850px) {
    .register-form form {
        width: 80%;
    }

        .register-form form button {
            width: 35%;
        }
}
