﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
    color: #FFFFFF;
    background-color: #162529;
    font-family: "Readex Pro", sans-serif;
    list-style: none;
    margin: 0 auto;
    max-width: 2200px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.bodyContainer {
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.65); /* light grey with opacity */
    z-index: 10;
    cursor: wait;
}

/* remove focus rings on text */
h1:focus,
h2:focus,
h3:focus,
p:focus {
    outline: none;
}

a {
    cursor: pointer;
}

.nav-link {
    text-align: center;
}

    .nav-link.active {
        font-weight: bold; /* Make the active link bold */
        color: #ffcc00; /* Highlight the active link with a different color */
        background-color: rgba(255, 255, 255, 0.1); /* Optional: subtle background */
    }

    .nav-link:not(.active):hover {
        color: red; /* Change text color on hover */
        background-color: rgba(255, 255, 255, 0.025); /* Optional: subtle background effect */
        text-decoration: underline; /* Optional: underline on hover */
    }


.navbar {
    padding-top: 4px;
    padding-bottom: 4px;
}

.headerImage {
    margin: 40px;
    max-width: 80%
}

.coming-soon-title {
    margin: 60px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}


.input-group {
    display: block;
}

    .input-group .form-control {
        float: none;
        margin: 0 auto;
    }

.nav-item {
    width: 140px;
}

ul {
    list-style: none;
}

.modal-content {
    background-color: #fdffeb;
    color: #162529
}

.modal-header {
}

.modal-title {
    display: inline-block;
}

.sync-dialog {
    color: black;
}

.table > tbody {
    vertical-align: middle;
}

.categoryButton {
    display: block;
    background-color: #FFFFFF;
    width: 260px;
    height: 80px;
    color: #212121;
    font-size: 22px;
    font-family: 'Roboto';
    border-radius: 0;
}

    .categoryButton img {
        max-width: 36px;
        max-height: 36px;
        margin: 0 6px 0 10px;
    }

    .categoryButton span {
        line-height: 60px;
    }

.demoBanner {
    display: block;
    text-align: center;
    background-color: #FFFFFF;
    width: 400px;
    height: 138px;
    color: #212121;
    font-size: 14px;
    font-family: 'Roboto';
    border: 2px solid;
    border-color: #212121;
}

    .demoBanner .pocketpro-logo-img {
        width: 100px;
        /*margin: 0 6px 0 10px;*/
    }

    .demoBanner span {
        /*line-height: 60px;*/
    }

.bannerHeader {
    margin: 6px;
}

    .bannerHeader img, span {
        display: inline-block;
    }

.demoBannerContent {
    display: inline-block;
}

.partnerLogoContainer {
    display: inline-block;
    vertical-align: top;
    margin: 0 4px;
}

    .partnerLogoContainer img {
        width: 60px;
        height: 60px;
    }

.blurbContainer {
    display: inline-block;
    width: 324px;
}

    .blurbContainer div {
        text-align: left;
    }

    .blurbContainer h3 {
        font-size: 18px;
    }

.rz-dropdown-item {
    padding: 6px 10px !important;
}

    .rz-dropdown-item span {
        color: #212121;
    }

.rz-multiselect-item-content {
    color: #212121 !important;
}

.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050; /* Higher than parent modal */
}

.confirm-modal {
    color: #212121;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1060;
    font-family: "Readex Pro", sans-serif;
}

    .confirm-modal p {
        padding: 6px 0;
    }

    .confirm-modal button {
        background-color: rgb(67, 64, 210);
        color: #FFFFFF;
        border-radius: 4px;
        width: 120px;
        text-transform: uppercase;
        line-height: 28px;
        font-size: 14px;
    }

/*my content tabs*/
.my-content-tab {
    background-color: #FDFFEB;
    padding: 6px 18px 18px;
}

.rz-tabview-title {
    text-transform: none;
    font-family: "Readex Pro", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.upload-panel {
    color: #2C2C2C;
    border: 1px solid #ccc; /* Light grey, subtle border */
    border-radius: 16px;
    padding: 40px 10px 10px;
    background-color: #FFF;
}

    .upload-panel i.bi.bi-cloud-upload {
        margin: 30px;
        padding: 30px;
        font-size: 24px;
    }

    .upload-panel h3 {
        color: #2C2C2C;
        font-size: 24px;
        padding: 8px 0 4px;
    }

    .upload-panel h4 {
        color: #2C2C2C;
        font-size: 16px;
        padding: 12px 0;
    }

    .upload-panel input {
        display: none;
    }

    .upload-panel button {
        width: 120px;
        margin: 10px 0;
        background-color: #162529;
    }

        .upload-panel button:hover, .upload-panel button:active, .upload-panel button:focus {
            background-color: #88ba3d;
        }

        .upload-panel button i {
            padding: 2px;
            font-size: 14px;
        }

    .upload-panel .upload-status {
        display: flex;
        justify-content: center; /* Horizontally centers the content */
        align-items: center; /* Vertically centers the content */
        height: 24px;
        margin: 12px 0;
        font-size: 16px;
        line-height: 16px;
    }

        .upload-panel .upload-status p {
            margin: unset;
        }


    /* WebKit-based browsers (Chrome, Safari, etc.) */
    .upload-panel progress {
        inline-size: calc(100% - 40px);
        margin: 4px 20px;
        height: 20px;
        border: 2px solid rgba(0, 0, 0, 0.1); /* Subtle border */
        border-radius: 8px; /* Optional: adds rounded corners */
    }

        .upload-panel progress::-webkit-progress-bar {
            background-color: #fdffeb; /* background */
            border-radius: 10px; /* Match the rounded corners of the progress bar */
        }

        .upload-panel progress::-webkit-progress-value {
            background-color: #88ba3d; /* color for progress */
            border-radius: 10px; /* Optional: rounded corners for progress */
        }

        /* Firefox */
        .upload-panel progress::-moz-progress-bar {
            background-color: #88ba3d; /* Green color for progress */
            border-radius: 10px;
        }

.video-details span {
    color: #2C2C2C;
    font-size: 12px;
}

.video-details .rz-dropdown-label {
    color: #2C2C2C;
    font-size: 16px;
}

.video-details .overline-text {
    margin-bottom: 4px;
}

.video-details button {
    width: 120px;
    margin: 20px 0;
    background-color: #162529;
}

    .video-details button:hover, .video-details button:active, .video-details button:focus {
        background-color: #88ba3d;
    }

.upload-panel .radzen-button-override {
    width: 120px !important;
    margin: 20px 0 !important;
    background-color: #162529 !important;
    padding: 12px 0 !important;
}

    .upload-panel .radzen-button-override:disabled,
    .upload-panel .radzen-button-override[disabled] {
        background-color: #ccc !important;
        color: #666 !important;
        cursor: not-allowed !important;
        opacity: 0.6;
    }

    .upload-panel .radzen-button-override span {
        color: #FFF !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        text-transform: none !important;
    }

.video-details-subpanel {
    padding: 16px;
}

    .video-details-subpanel h4 {
        text-align: center;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
    }

.partner-category-page-container {
}

    .partner-category-page-container h4 {
        color: #162529 !important;
        font-size: 22px;
        padding: 14px 0px
    }

.partner-list-panel {
    width: 300px;
    color: #2C2C2C;
    border: 1px solid #ccc; /* Light grey, subtle border */
    border-radius: 16px;
    background-color: #FFF;
}

    .partner-list-panel i.bi.bi-cloud-upload {
        margin: 30px;
        padding: 30px;
        font-size: 24px;
    }

    .partner-list-panel .list-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 70px;
        border-radius: 16px 16px 0 0;
        background-color: #88ba3d;
        pointer-events: none;
    }

        .partner-list-panel .list-header > a.list-header-button {
            text-decoration: none;
            color: inherit;
            display: flex;
            padding: 12px;
            font-size: 20px;
            font-weight: 500;
            border-radius: 16px;
            justify-content: flex-end;
            align-items: center;
            gap: 0.5rem;
            height: 100%;
            pointer-events: auto;
            cursor: pointer; /* Makes it feel clickable */
            transition: background-color 0.2s ease, box-shadow 0.2s ease;
        }

            .partner-list-panel .list-header > a.list-header-button:hover {
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                background-color: #7cab37;
            }

            .partner-list-panel .list-header > a.list-header-button p {
                margin: 0 !important;
                line-height: 36px;
            }

            .partner-list-panel .list-header > a.list-header-button i {
                font-size: 36px;
                font-weight: bold;
            }

        .partner-list-panel .list-header.video-list {
            justify-content: center;
        }

    .partner-list-panel .partner-list-container {
        display: flex;
        justify-content: center; /* horizontal center */
        align-items: flex-start;
        height: 620px;
        border-radius: 0 0 16px 16px;
        background-color: #fff;
        overflow: auto;
    }

        .partner-list-panel .partner-list-container .selected-row {
            border-left: 4px solid #88ba3d;
            transition: background-color 0.2s ease;
        }

.no-content-container {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;
    height: 100%;
}

.partner-category-row-container {
    padding: 8px 16px;
    border-bottom: 1px solid #2C2C2C4D;
    box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05), /* subtle top shadow */
    0 6px 12px rgba(0, 0, 0, 0.15); /* more prominent bottom shadow */
}

    .partner-category-row-container .category-name {
        font-size: 18px;
        font-weight: 600
    }

    .partner-category-row-container .category-description {
        font-weight: 500
    }

    .partner-category-row-container .category-button-column {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .partner-category-row-container .category-button-column .category-button-container {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #162529;
            border-radius: 16px;
            width: 50px;
            height: 50px;
            transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
        }

            .partner-category-row-container .category-button-column .category-button-container a {
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                color: #fff !important;
                font-size: 20px;
                font-weight: 600;
                width: 100%;
                height: 100%;
                transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
            }

    .partner-category-row-container .category-button-container:hover {
        transform: scale(1.03); /* Slightly grow on hover */
    }

    .partner-category-row-container .category-button-container a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.1); /* Slightly grow on hover */
    }

    .partner-category-row-container .category-button-container:active {
        transform: scale(0.95); /* Slightly shrink on click */
    }

    .partner-category-row-container .category-button-container a:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.9); /* Slightly shrink on click */
    }

    .partner-category-row-container .category-button-container .plus-button {
        font-size: 32px;
    }

.partner-sub-category-row-container {
    padding: 6px 16px;
    border-bottom: 2px solid #2C2C2C0D;
    opacity: .9;
}

    .partner-sub-category-row-container .sub-category-name {
        font-size: 16px;
        font-weight: 600
    }

    .partner-sub-category-row-container .sub-category-description {
        font-weight: 500
    }

    .partner-sub-category-row-container .sub-category-button-column {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .partner-sub-category-row-container .sub-category-button-column .sub-category-button-container {
            display: flex;
            justify-content: center;
            align-items: center;
            border-color: #162529;
            opacity: .6;
            border: solid 1.5px;
            color: #162529;
            border-radius: 16px;
            width: 50px;
            height: 50px;
            transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
        }

            .partner-sub-category-row-container .sub-category-button-column .sub-category-button-container a {
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                color: #162529 !important;
                font-size: 20px;
                font-weight: 600;
                width: 100%;
                height: 100%;
                transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
            }

    .partner-sub-category-row-container .sub-category-button-container:hover {
        transform: scale(1.03); /* Slightly grow on hover */
    }

    .partner-sub-category-row-container .sub-category-button-container a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.1); /* Slightly grow on hover */
    }

    .partner-sub-category-row-container .sub-category-button-container:active {
        transform: scale(0.95); /* Slightly shrink on click */
    }

    .partner-sub-category-row-container .sub-category-button-container a:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.9); /* Slightly shrink on click */
    }

    .partner-sub-category-row-container .sub-category-button-container .plus-button {
        font-size: 32px;
    }

    .partner-sub-category-row-container .sub-category-icon-column .sub-category-icon-container {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        width: 50px;
        height: 50px;
        transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
    }

        .partner-sub-category-row-container .sub-category-icon-column .sub-category-icon-container span {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            width: 100%;
            height: 100%;
            transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
        }

.dark-button-container {
    background-color: #162529;
    color: #fff !important;
    text-decoration: none;
}

.ordinal-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 22px;
    transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
}

    .ordinal-button-container a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        width: 100%;
        height: 100%;
        color: inherit;
        transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
    }

    .ordinal-button-container:hover {
        transform: scale(1.03); /* Slightly grow on hover */
    }

    .ordinal-button-container a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.1); /* Slightly grow on hover */
    }

    .ordinal-button-container:active {
        transform: scale(0.95); /* Slightly shrink on click */
    }

    .ordinal-button-container a:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.9); /* Slightly shrink on click */
    }

.sub-category-ordinal-container {
    background-color: none !important;
    color: #162529 !important;
    border: solid 1.5px;
}

.sub-category-ordinal {
    color: #162529 !important;
}

.partner-list-panel.details-panel {
    display: flex !important;
    height: 700px;
    flex-direction: column;
}

    .partner-list-panel.details-panel .details-panel-header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
        border-radius: 16px 16px 0 0;
        background-color: #88ba3d;
        pointer-events: none;
    }

.partner-list-panel h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.partner-list-panel.details-panel .details {
    flex-grow: 1;
    margin-top: 12px;
    justify-content: flex-start;
}

    .partner-list-panel.details-panel .details ul {
        list-style-type: disc;
    }

        .partner-list-panel.details-panel .details ul li {
            font-size: 18px;
            text-align: left;
        }

.partner-video-row-container {
    padding: 8px 16px;
    border-bottom: 1px solid #2C2C2C4D;
    height: 103px;
    box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.05), /* subtle top shadow */
    0 6px 12px rgba(0, 0, 0, 0.15); /* more prominent bottom shadow */
}

    .partner-video-row-container .video-title {
        font-size: 18px;
        font-weight: 600
    }

    .partner-video-row-container .video-description {
        font-weight: 500;
        line-height: 16px;
        height: 48px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.left-align-flex {
    justify-content: flex-start !important;
    text-align: left;
}

.partner-video-row-container .video-button-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .partner-video-row-container .video-button-column .video-edit-button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #162529;
        border-radius: 16px;
        width: 50px;
        height: 50px;
        transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
    }

        .partner-video-row-container .video-button-column .video-edit-button-container a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #fff !important;
            font-size: 20px;
            font-weight: 600;
            width: 100%;
            height: 100%;
            transition: background-color 0.2s ease, transform 0.3s ease; /* Smooth transition for both color and movement */
        }

    .partner-video-row-container .video-button-column:hover {
        transform: scale(1.03); /* Slightly grow on hover */
    }

    .partner-video-row-container .video-button-column a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.1); /* Slightly grow on hover */
    }

    .partner-video-row-container .video-button-column:active {
        transform: scale(0.95); /* Slightly shrink on click */
    }

    .partner-video-row-container .video-button-column a:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.9); /* Slightly shrink on click */
    }

.video-thumbnail-column img {
    max-height: 70px;
    max-width: 90px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

    .video-thumbnail-column img:hover {
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    }

.category-dropdown {
    border-radius: 16px;
    height: 48px;
}

.dropdown-category {
    font-size: 16px;
    font-weight: 600;
}

.dropdown-subcategory {
    font-size: 16px;
}

.video-details .rz-dropdown-label {
    font-size: 16px;
    line-height: 32px;
}

.fine-details-column {
    font-size: 13px;
    text-align: left;
}

.vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 2px; /* adjust for tightness */
    padding: 0;
    margin: 0;
    line-height: 14px;
}

    .vertical-stack label {
        text-decoration: underline;
    }

    .vertical-stack p {
        margin: 0;
        padding: 0;
    }

.top-dividing-border {
    border-top: 1px solid #ddd; /* subtle gray line */
    padding-top: 6px; /* space between line and text */
    margin-top: 2px;
}

.video-preview-container {
    height: 100%;
}

.rz-dialog:has(.video-preview-container) .rz-dialog-content {
    height: 100%;
}

.inline-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid #ccc;
    border-top: 4px solid #88ba3d;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.video-tick {
    color: #88ba3d;
    font-size: 18px;
}

.document-preview {
    height: 100%;
    width: 100%;
}

    .document-preview iframe {
        width: 100%;
    }

.document-title {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.terms-dialog-content {
    height: 100%;
}

.html-sandbox {
    all: initial; /* Reset all inherited styles */
    display: block;
    font-family: sans-serif; /* Add back base styles as needed */
    color: black;
    height: 100%;
    overflow: auto;
}

    .html-sandbox * {
        all: unset; /* Clears all inherited styles for children */
        display: revert; /* Reverts layout styles */
        font: revert;
        color: revert;
        margin: revert;
        padding: revert;
    }

.landing-page {
    background-color: #162529;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.hero-section {
    padding: 4rem 1rem;
}

.hero-logo {
    width: 220px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #cfd8dc;
    max-width: 320px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-btn {
    background-color: #88BA3D !important;
    border: none;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    padding: 0.75rem .75rem;
    width: 270px;
}

.outline-btn {
    background-color: transparent !important;
    color: #ffb36a; /* warm orange accent */
    border: 1px solid #88BA3D;
    border-radius: 4px;
    font-weight: 500;
    padding: 0.75rem .75rem;
    width: 270px;
    transition: all 0.2s ease;
}

    .outline-btn:hover {
        background-color: rgba(255, 179, 106, 0.1);
        color: #ffe2c0;
        border-color: #cfd8dc;
    }

/* --- Responsive --- */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-btn, .outline-btn {
        width: auto;
    }
}

/*SignUp Page*/

.register-form-section > * {
    margin-bottom: 1rem; /* adds vertical space between direct children */
}

.register-page {
    background-color: #162529;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.register-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.register-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.register-subtitle {
    color: #cfd8dc;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.register-form-section {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.register-help {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #cfd8dc;
}

    .register-help a {
        color: #ffb36a; /* accent color */
        text-decoration: underline;
    }

.register-cta-btn {
    background-color: #88BA3D !important;
    border: none;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    padding: 0.75rem 1rem;
    margin-top: 2.5rem;
    transition: background 0.2s ease;
}

    .register-cta-btn:hover {
        background-color: #b0070f;
    }

.password-requirements-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem; /* slightly more space between pills */
    font-size: 0.8rem;
    margin-top: 0.75rem; /* space above pills */
    margin-bottom: 1rem; /* space below before next input */
}


    .password-requirements-inline span {
        padding: 0.15rem 0.4rem;
        border-radius: 12px;
        background-color: #33474d; /* subtle dark background */
        color: #b0bec5;
        font-weight: 500;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
    }

        .password-requirements-inline span.valid {
            background-color: #4caf50; /* green when satisfied */
            color: #fff;
        }

        .password-requirements-inline span.invalid {
            background-color: #33474d; /* default background */
            color: #b0bec5;
        }

.input-error {
    color: #ff6f61;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem; /* ensures space after error text */
}


@media (min-width: 768px) {
    .register-title {
        font-size: 2.5rem;
    }
}
