.lssl-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.lssl-card {
    width: 100%;
    max-width: 920px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.lssl-card h2,
.lssl-card h3 {
    margin-top: 0;
}

.lssl-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lssl-panel {
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 22px;
}

.lssl-form,
.lssl-panel #loginform {
    display: grid;
    gap: 12px;
}

.lssl-form label,
.lssl-panel #loginform label {
    font-weight: 600;
    font-size: 14px;
}

.lssl-form input,
.lssl-panel #loginform input[type="text"],
.lssl-panel #loginform input[type="password"] {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px;
}

.lssl-form button,
.lssl-panel #wp-submit,
.lssl-button {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    background: #111111;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.lssl-form button:hover,
.lssl-panel #wp-submit:hover,
.lssl-button:hover {
    opacity: 0.88;
    color: #ffffff;
}

.lssl-message {
    border-radius: 10px;
    margin: 0 0 20px;
    padding: 12px 14px;
}

.lssl-success {
    background: #ecfdf3;
    border: 1px solid #b7efc5;
}

.lssl-error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.lssl-small {
    margin-bottom: 0;
    font-size: 14px;
}

.lssl-logged-in {
    font-weight: 600;
}

@media (max-width: 760px) {
    .lssl-card {
        padding: 22px;
    }

    .lssl-grid {
        grid-template-columns: 1fr;
    }
}
