.login-register-view {
    width: min(1200px, calc(100% - 3rem));
    margin: 0.5rem auto 0;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(230, 243, 237, 0.55), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(15, 118, 106, 0.14);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(15, 118, 106, 0.14);
    animation: slideDown 220ms ease;
    padding-top: calc(var(--header-height) + 10px) !important;
}

.abo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.abo-label {
    flex: 1;
}

.lr-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.lr-top h3 {
    margin: 0.15rem 0;
}


.lr-tabs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.lr-tab {
    border: 1px solid rgba(15, 118, 106, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.7);
    color: #0f4f45;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.lr-tab.active {
    background: linear-gradient(135deg, rgba(15, 118, 106, 0.18), rgba(18, 162, 146, 0.2));
    border-color: rgba(15, 118, 106, 0.35);
    box-shadow: 0 10px 26px rgba(15, 118, 106, 0.18);
}

.lr-tab-panels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.lr-toast {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #92400e;
}

.lr-toast.warning {
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
}

.lr-card {
    background: #ffffff;
    border: 1px solid rgba(15, 118, 106, 0.12);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: 0 14px 35px rgba(15, 118, 106, 0.08);
}

.lr-card.accent {
    background: linear-gradient(145deg, rgba(217, 236, 230, 0.55), rgba(255, 255, 255, 0.95));
    border-color: rgba(15, 118, 106, 0.22);
}

.lr-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.lr-card.is-hidden {
    display: none;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.field-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.field-grid .field {
    flex: 1 1 160px;
}

.feature-table-wrapper {
    margin-top: 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 118, 106, 0.18);
    overflow: hidden;
    background: #ffffff;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.feature-table th,
.feature-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(15, 118, 106, 0.12);
}

.feature-table th {
    text-align: left;
    font-weight: 700;
    background: rgba(240, 253, 250, 0.9);
}

.feature-row.is-selected {
    background: rgba(15, 118, 106, 0.06);
}

.feature-click {
    cursor: pointer;
}

.feature-click:hover {
    background: rgba(15, 118, 106, 0.06);
}

.feature-select {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-weight: 600;
}

.feature-title {
    font-weight: 700;
    color: #0f172a;
}

.price-cell {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.price-selected {
    background: rgba(15, 118, 106, 0.12);
    box-shadow: inset 0 0 0 1px rgba(15, 118, 106, 0.25);
}

.price-selected .price-value {
    color: #0b5e53;
}

.field label {
    font-weight: 600;
    font-size: 0.9rem;
}

.field input {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 118, 106, 0.18);
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.field input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 118, 106, 0.25);
    border-color: rgba(15, 118, 106, 0.35);
}

.action-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
    border: none;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #0f766a, #12a292);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 118, 106, 0.25);
}

.primary-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
}

.secondary-btn {
    background: rgba(15, 118, 106, 0.1);
    color: #0f4f45;
    border: 1px solid rgba(15, 118, 106, 0.18);
}

.secondary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ghost-btn {
    background: transparent;
    color: #0f766a;
    border: 1px dashed rgba(15, 118, 106, 0.3);
}

.primary-btn:not(:disabled):hover,
.secondary-btn:not(:disabled):hover,
.ghost-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(15, 118, 106, 0.18);
}

.note {
    font-weight: 600;
    font-size: 0.9rem;
}

.note.success {
    color: #0f5132;
}

.note.error {
    color: #b42318;
}

.pill.soft {
    background: rgba(15, 118, 106, 0.15);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .login-register-view {
        width: calc(100% - 1.5rem);
        padding: 1rem;
    }

    .lr-top {
        flex-direction: column;
        align-items: flex-start;
    }

}
