ol {
    list-style: decimal inside;
    counter-reset: step-counter;
    background-color: var(--bg-subtle);
    border-radius: 20px;
    border: 1px solid var(--bg-subtle);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

li {
    padding: 1rem;
    font-size: 1.1rem;
    color: var(--text-black);
}

li.ar-active {
    background-color: var(--bg-primary);
}

li:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

li:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

li::marker {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--hl-primary);
}

input[type="text"],
input[type="password"],
input[type="url"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="url"]:focus {
    border-color: var(--hl-primary);
    outline: none;
    box-shadow: none;
}

button#showPassword {
    top: 1.2rem;
    right: 1rem;
}

.ar-content-container {
    width: 100%;
}

.ar-btn {
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ar-input-group>input {
    margin-top: 0.75rem;
}