.inventory-auth-page {
    background:
        radial-gradient(circle at top left, rgba(247, 58, 11, 0.2), transparent 34%),
        radial-gradient(circle at bottom right, rgba(20, 86, 80, 0.28), transparent 28%),
        linear-gradient(135deg, #f5f1e8 0%, #eef3f1 50%, #fff9f4 100%);
    font-family: Roboto, Arial, sans-serif;
    min-height: 100vh;
}

.inventory-auth-shell {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 18px;
    width: 100%;
}

.inventory-auth-card-panel {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(20, 86, 80, 0.1);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(16, 39, 36, 0.12);
    overflow: hidden;
    width: 100%;
}

.inventory-auth-logo {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(20, 86, 80, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(15, 36, 33, 0.08);
    display: inline-flex;
    max-width: 240px;
    padding: 14px 18px;
}

.inventory-auth-logo--centered {
    margin: 0 auto 24px;
}

.inventory-auth-logo img {
    display: block;
    height: auto;
    width: 100%;
}

.inventory-auth-form-side {
    padding: 44px 42px;
}

.inventory-auth-form-inner {
    margin: 0 auto;
    max-width: 640px;
}

.inventory-auth-card-panel--login {
    max-width: 520px;
}

.inventory-auth-card-panel--register {
    max-width: 920px;
}

.inventory-auth-header {
    margin-bottom: 8px;
    text-align: center;
}

.inventory-auth-kicker {
    color: #f0673f;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.inventory-auth-heading {
    color: #173331;
    font-size: clamp(1.9rem, 2.7vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
}

.inventory-auth-subheading {
    color: #62706d;
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 14px 0 0;
}

.inventory-auth-alert {
    border: 0;
    border-radius: 14px;
    margin-top: 26px;
    padding: 14px 16px;
}

.inventory-auth-errors {
    margin-top: 26px;
}

.inventory-auth-errors ul {
    margin: 0;
    padding-left: 18px;
}

.inventory-auth-form {
    margin-top: 30px;
}

.inventory-auth-grid {
    display: grid;
    gap: 18px;
}

.inventory-auth-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inventory-auth-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inventory-auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.inventory-auth-field label {
    color: #284240;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
}

.inventory-auth-input,
.inventory-auth-select,
.inventory-auth-textarea,
.inventory-auth-file {
    background: #fbfcfc;
    border: 1px solid #d9e4e1;
    border-radius: 14px;
    box-shadow: none;
    color: #173331;
    min-height: 54px;
    padding: 13px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.inventory-auth-textarea {
    min-height: 120px;
    resize: vertical;
}

.inventory-auth-input:focus,
.inventory-auth-select:focus,
.inventory-auth-textarea:focus,
.inventory-auth-file:focus {
    background: #fff;
    border-color: rgba(20, 86, 80, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(20, 86, 80, 0.12);
    color: #173331;
}

.inventory-auth-input-group {
    align-items: stretch;
    background: #fbfcfc;
    border: 1px solid #d9e4e1;
    border-radius: 14px;
    display: flex;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.inventory-auth-input-group:focus-within {
    background: #fff;
    border-color: rgba(20, 86, 80, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(20, 86, 80, 0.12);
}

.inventory-auth-input-group .inventory-auth-input {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
    min-width: 0;
}

.inventory-auth-input-group .inventory-auth-input:focus {
    box-shadow: none;
}

.inventory-auth-input-icon {
    align-items: center;
    color: #f0673f;
    display: inline-flex;
    font-size: 0.98rem;
    justify-content: center;
    min-width: 56px;
}

.inventory-auth-help {
    color: #7a8785;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.inventory-auth-error {
    color: #cc3d30;
    font-size: 0.84rem;
    font-weight: 500;
}

.inventory-auth-options {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    margin: 8px 0 0;
}

.inventory-auth-options a,
.inventory-auth-footer a {
    color: #145650;
    font-weight: 700;
}

.inventory-auth-options a:hover,
.inventory-auth-footer a:hover {
    color: #f0673f;
    text-decoration: none;
}

.inventory-auth-check label {
    color: #51605d;
    font-size: 0.92rem;
}

.inventory-auth-submit {
    background: linear-gradient(135deg, #145650 0%, #f0673f 100%);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(20, 86, 80, 0.22);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 22px;
    min-height: 56px;
    width: 100%;
}

.inventory-auth-submit:hover,
.inventory-auth-submit:focus {
    background: linear-gradient(135deg, #114945 0%, #df6039 100%);
    box-shadow: 0 20px 36px rgba(20, 86, 80, 0.24);
    color: #fff;
}

.inventory-auth-footer {
    color: #6d7b78;
    font-size: 0.94rem;
    margin: 22px 0 0;
    text-align: center;
}

.inventory-auth-box {
    width: min(520px, 94vw);
}

.inventory-auth-box .login-logo {
    margin-bottom: 18px;
    text-align: center;
}

.inventory-auth-box .login-logo img {
    height: auto;
    max-width: 260px;
    width: 100%;
}

.inventory-auth-card {
    border: 0;
    border-radius: 30px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.inventory-auth-card .login-card-body,
.inventory-auth-card .register-card-body {
    border-radius: 30px;
    padding: 28px;
}

.inventory-register-box {
    width: min(760px, 94vw);
}

.inventory-auth-card .btn-primary,
.inventory-topbar .jobick-btn-primary {
    background: var(--jobick-primary);
    border-color: var(--jobick-primary);
    border-radius: 8px;
    font-weight: 700;
}

.inventory-auth-card .btn-primary:hover,
.inventory-topbar .jobick-btn-primary:hover {
    background: var(--jobick-primary-hover);
    border-color: var(--jobick-primary-hover);
}

.inventory-topbar {
    border-bottom: 1px solid var(--jobick-border);
}

.inventory-user-pill {
    align-items: center;
    background: var(--jobick-primary-soft);
    border-radius: 999px;
    color: var(--jobick-primary);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    padding: 8px 13px;
}

.inventory-logout-btn {
    min-height: 34px;
    padding: 7px 12px;
}

.jobick-sidebar .user-panel small {
    color: var(--jobick-muted);
    display: block;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jobick-sidebar form {
    margin: 0;
}

.jobick-sidebar .jobick-logout {
    border: 0;
}

.inventory-dashboard .inventory-flash {
    border: 0;
    border-radius: 8px;
    left: 24px;
    position: relative;
    top: 18px;
    width: calc(100% - 48px);
}

.inventory-action-row {
    align-items: center;
    border-bottom: 1px solid var(--jobick-border);
    color: var(--jobick-heading);
    display: flex;
    font-weight: 700;
    gap: 12px;
    padding: 15px 0;
    text-decoration: none;
}

.inventory-action-row:last-child {
    border-bottom: 0;
}

.inventory-action-row i {
    align-items: center;
    background: var(--jobick-primary-soft);
    border-radius: 8px;
    color: var(--jobick-primary);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.inventory-action-row:hover {
    color: var(--jobick-primary);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .inventory-auth-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inventory-auth-card-panel--register {
        max-width: 760px;
    }
}

@media (max-width: 767.98px) {
    .inventory-auth-shell {
        padding: 20px 12px;
    }

    .inventory-auth-form-side {
        padding: 28px 20px;
    }

    .inventory-auth-grid--two,
    .inventory-auth-grid--three {
        grid-template-columns: 1fr;
    }

    .inventory-auth-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .inventory-dashboard .inventory-flash {
        left: 14px;
        width: calc(100% - 28px);
    }
}
