    .account-messages { 
        margin-top: 50px;
        border-top: 1px solid #3f3f46;
        color: #9595a1;

        strong { 
            font-size: smaller;
            margin-left: -10px;
            color: #9595a1;
        }

        ul {
            display: block;

            li {
                padding-left: 10px;
                font-style: italic;
                display: block;
                font-size: smaller;
                padding-bottom: 3px;

                &::before {
                    content: "- ";
                    margin-right: 8px;
                }
            }
        }
    }

    input {
        box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05);

        font-family: var(--font-family);
        font-feature-settings: var(--font-feature-settings, normal);
        font-size: 1rem;
        color: #ffffff;
        background: #09090b;
        padding: 0.5rem 0.75rem;
        border: 1px solid #3f3f46;
        transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
        appearance: none;
        border-radius: 6px;
        outline-color: transparent;
    }

    input:enabled:hover {
        border-color: #52525b;
    }
    
    input:enabled:focus {
        outline: 1px solid var(--p-focus-ring-color);
        outline-offset: -1px;
        box-shadow: none;
      border-color: #52525b;
    }

  
    button {
        display: inline-flex;
        cursor: pointer;
        user-select: none;
        align-items: center;
        vertical-align: bottom;
        text-align: center;
        overflow: hidden;
        position: relative;

        color: #020617;
        background: #34d399;
        border: 1px solid #34d399;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
        border-radius: 6px;
        outline-color: transparent;
        }
    button:not(:disabled):hover {
        background: #6ee7b7;
        color: #020617;
        border-color: #6ee7b7;
        }
    button:not(:disabled):active {
        background: #a7f3d0;
        color: #020617;
        border-color: #a7f3d0;
        }
        
    hr { 
        margin-top: 30px;
    }

    form {
        padding-left: 30px;
    }