/* Remove bullets and spacing from all ULs in these forms */
.esolution-view-auth ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Give each login section a consistent card-like look */
.cti_form {
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
    background: #f9f9f9;
}

/* Make the parent rows support a 2×2 grid */
.esolution-view-auth > .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* spacing between cards */
}

/* Force each quadrant to take 50% width */
.esolution-view-auth .cti_form {
    width: calc(50% - 20px); /* subtract gap to avoid wrapping */
}

/* Optional: Make legends stand out */
.esolution-view-auth fieldset legend {
    font-weight: bold;
    font-size: 1.2em;
}

/* Optional: Improve spacing in each li */
.esolution-view-auth li {
    margin-bottom: 12px;
}

