﻿:root {
    --primary: #EB5017;
    --primary-hover: #D4430F;
    --primary-light: #FCDCD2;
    --bg-light: #F9FAFB;
    --surface-light: #FFFFFF;
    --text-light: #111827;
    --text-subtle-light: #6B7280;
    --border-light: #E5E7EB;
    --bg-dark: #0C111D;
    --surface-dark: #1F2937;
    --text-dark: #FFFFFF;
    --text-subtle-dark: #9CA3AF;
    --border-dark: #374151;
}

/* Login-page-design-1 */

.design-1 body {
    background: var(--bg-light);
    color: var(--text-light);
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
}

    .design-1 body.dark {
        background: var(--bg-dark);
        color: var(--text-dark);
    }

.design-1 .mesh-bg {
    background-color: #f3f4f6;
    background-image: radial-gradient(at 0% 0%, hsla(15, 100%, 93%, 1) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(28, 100%, 84%, 1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(355, 100%, 93%, 1) 0, transparent 50%);
}

.animated-grid {
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(235, 80, 23, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(235, 80, 23, 0.05) 1px, transparent 1px);
}


.design-1 body.dark .mesh-bg {
    background-color: #0C111D;
    background-image: radial-gradient(at 0% 0%, hsla(15, 83%, 20%, 0.3) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(28, 80%, 15%, 0.3) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(355, 80%, 20%, 0.3) 0, transparent 50%);
}

.design-1 .container-fluid.p-0.h-100 {
    height: 100%;
}



.design-1 .left-panel {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(12, 17, 29, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    padding: 30px 64px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .design-1 .left-panel {
        display: flex;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .design-1 .left-panel {
        padding: 30px 40px;
    }
}

@media (max-width: 767px) {
    .design-1 .left-panel {
        min-height: auto;
        padding: 40px 24px;
    }
}

.design-1 .animated-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(235, 80, 23, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(235, 80, 23, 0.05) 1px, transparent 1px);
}

.design-1 .glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.design-1 .glow-primary {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(235, 80, 23, 0.1);
}

.design-1 .glow-blue {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(30, 58, 138, 0.2);
}

.design-1 .row.no-gutters.h-100 {
    height: 100%;
    margin: 0;
}

@media (max-width: 1199px) {
    .design-1 .glow-effect {
        width: 400px;
        height: 400px;
    }
}

.design-1 .logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.design-1 .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #c2410c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(235, 80, 23, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .design-1 .logo-icon i {
        color: white;
        font-size: 20px;
    }

.design-1 .logo-text h2 {
    color: white;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.design-1 .logo-text p {
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.design-1 .hero-text {
    position: relative;
    z-index: 20;
    padding-top:5%;
}

    .design-1 .hero-text h1 {
        font-size: 35px;
        font-weight: 600;
        color: white;
        line-height: 1.2;
        /* margin-bottom: 24px; */
        letter-spacing: -1px;
        margin-top: 0;
    }

.design-1 .gradient-text {
    background: linear-gradient(to right, var(--primary), #fdba74, white);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.design-1 .hero-text p {
    color: #D1D5DB;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

@media (max-width: 1199px) {
    .design-1 .hero-text h1 {
        font-size: 32px;
    }

    .design-1 .hero-text p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .design-1 .hero-text h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .design-1 .hero-text p {
        font-size: 14px;
        padding-left: 12px;
    }
}

.design-1 .visual-container {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

@media (max-height: 600px) and (orientation: landscape) {
    .design-1 .left-panel.col-md-7,
    .design-1 .right-panel.col-md-5 {
        width: 50% !important;
        height: 100vh !important;
    }
}

@media (max-width: 1199px) {
    .design-1 .visual-container {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .design-1 .visual-container {
        min-height: 250px;
        margin: 30px 0;
    }
}

.design-1 .orbital-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.design-1 .center-core {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.design-1 .core-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1F2937, #000000);
    border: 1px solid rgba(235, 80, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(235, 80, 23, 0.25);
    z-index: 20;
}

    .design-1 .core-circle::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(235, 80, 23, 0.05);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    .design-1 .core-circle::after {
        content: '';
        position: absolute;
        inset: 8px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

.design-1 .core-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .design-1 .core-content i {
        font-size: 46px;
        color: var(--primary);
        margin-bottom: 8px;
        text-shadow: 0 0 15px rgba(235, 80, 23, 0.5);
    }

.design-1 .core-text {
    display: flex;
    flex-direction: column;
}

    .design-1 .core-text span:first-child {
        font-size: 18px;
        font-weight: bold;
        color: white;
        letter-spacing: 1px;
    }

    .design-1 .core-text span:last-child {
        font-size: 10px;
        font-weight: 500;
        color: #9CA3AF;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

@media (max-width: 1199px) {
    .design-1 .core-circle {
        width: 120px;
        height: 120px;
    }

    .design-1 .core-content i {
        font-size: 36px;
    }

    .design-1 .core-text span:first-child {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .design-1 .core-circle {
        width: 100px;
        height: 100px;
    }

    .design-1 .core-content i {
        font-size: 28px;
    }

    .design-1 .core-text span:first-child {
        font-size: 14px;
    }

    .design-1 .core-text span:last-child {
        font-size: 8px;
    }
}

.design-1 .module-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 30;
    transition: transform 0.3s;
}

    .design-1 .module-container:hover {
        transform: scale(1.1);
    }

.design-1 .module-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #161B26;
    border: 1px solid rgba(107, 114, 128, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.design-1 .module-container:hover .module-icon {
    border-color: currentColor;
    box-shadow: 0 0 20px currentColor;
}

.design-1 .module-icon i {
    font-size: 24px;
}

.design-1 .module-label {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .design-1 .module-label span {
        font-size: 12px;
        font-weight: 600;
        color: #D1D5DB;
        letter-spacing: 0.5px;
    }

.design-1 .module-profile {
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.design-1 .module-benefits {
    top: 28%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.design-1 .module-payroll {
    top: 35%;
    left: 82%;
    transform: translate(-50%, -50%);
}

.design-1 .module-recruit {
    top: 55%;
    left: 88%;
    transform: translate(-50%, -50%);
}

.design-1 .module-perform {
    top: 81%;
    left: 73%;
    transform: translate(-50%, -50%);
}

.design-1 .module-assets {
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.design-1 .module-complaints {
    top: 79%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.design-1 .module-inquiry {
    top: 55%;
    left: 12%;
    transform: translate(-50%, -50%);
}

.design-1 .module-attendance {
    top: 26%;
    left: 27%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
    .design-1 .module-icon {
        width: 50px;
        height: 50px;
    }

        .design-1 .module-icon i {
            font-size: 20px;
        }

    .design-1 .module-label {
        padding: 3px 8px;
    }

        .design-1 .module-label span {
            font-size: 10px;
        }

    .design-1 .module-profile {
        top: 15%;
        left: 50%;
    }

    .design-1 .module-benefits {
        top: 25%;
        left: 75%;
    }

    .design-1 .module-payroll {
        top: 35%;
        left: 85%;
    }

    .design-1 .module-recruit {
        top: 60%;
        left: 90%;
    }

    .design-1 .module-perform {
        top: 85%;
        left: 75%;
    }

    .design-1 .module-assets {
        top: 90%;
        left: 50%;
    }

    .design-1 .module-complaints {
        top: 85%;
        left: 25%;
    }

    .design-1 .module-inquiry {
        top: 60%;
        left: 10%;
    }

    .design-1 .module-attendance {
        top: 25%;
        left: 25%;
    }
}

@media (max-width: 767px) {
    .design-1 .module-icon {
        width: 40px;
        height: 40px;
    }

        .design-1 .module-icon i {
            font-size: 16px;
        }

    .design-1 .module-label span {
        font-size: 8px;
    }
}

.design-1 .text-blue-400 {
    color: #60a5fa;
}

.design-1 .text-pink-400 {
    color: #f472b6;
}

.design-1 .text-green-400 {
    color: #4ade80;
}

.design-1 .text-purple-400 {
    color: #c084fc;
}

.design-1 .text-red-400 {
    color: #f87171;
}

.design-1 .text-orange-400 {
    color: #fb923c;
}

.design-1 .text-yellow-400 {
    color: #facc15;
}

.design-1 .text-cyan-400 {
    color: #22d3ee;
}

.design-1 .text-indigo-400 {
    color: #818cf8;
}

.design-1 .right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    background: var(--bg-light);
}

.design-1 body.dark .right-panel {
    background: var(--bg-dark);
}

@media (max-width: 1199px) {
    .design-1 .right-panel {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .design-1 .right-panel {
        padding: 40px 24px;
        min-height: auto;
    }
}

.design-1 .theme-toggle {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-light);
    color: #4B5563;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.design-1 body.dark .theme-toggle {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--border-dark);
    color: #D1D5DB;
}

.design-1 .theme-toggle:hover {
    background: white;
}

.design-1 body.dark .theme-toggle:hover {
    background: black;
}

.design-1 .theme-toggle i {
    font-size: 16px;
}

.design-1 .theme-toggle .fa-moon {
    display: inline;
}

.design-1 .theme-toggle .fa-sun {
    display: none;
}

.design-1 body.dark .theme-toggle .fa-moon {
    display: none;
}

.design-1 body.dark .theme-toggle .fa-sun {
    display: inline;
}

@media (max-width: 767px) {
    .design-1 .theme-toggle {
        top: 16px;
        right: 16px;
    }
}

.design-1 .login-box {
    width: 100%;
    max-width: 448px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.design-1 body.dark .login-box {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-1 .login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), #fdba74);
}

@media (max-width: 1199px) {
    .design-1 .login-box {
        padding: 28px;
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .design-1 .login-box {
        padding: 24px;
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .design-1 .login-box {
        padding: 20px;
        max-width: 100%;
        border-radius: 16px;
    }
}

.design-1 .login-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .design-1 .login-header img {
        width: 330px;
        max-width: 100%;
        height: auto;
    }

.design-1 .login-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .design-1 .login-brand i {
        font-size: 24px;
        color: var(--primary);
    }

    .design-1 .login-brand span {
        font-size: 24px;
        font-weight: bold;
        color: var(--text-light);
        letter-spacing: -0.5px;
    }

.design-1 body.dark .login-brand span {
    color: var(--text-dark);
}

.design-1 .login-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-subtle-light);
}

.design-1 body.dark .login-subtitle {
    color: var(--text-subtle-dark);
}

@media (max-width: 1199px) {
    .design-1 .login-header img {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .design-1 .login-header img {
        width: 240px;
    }
}

@media (max-width: 767px) {
    .design-1 .login-header img {
        width: 200px;
    }
}

.design-1 .welcome-section {
    margin-bottom: 32px;
}

    .design-1 .welcome-section h2 {
        font-size: 24px;
        font-weight: bold;
        color: var(--text-light);
        margin-bottom: 8px;
    }

.design-1 body.dark .welcome-section h2 {
    color: var(--text-dark);
}

.design-1 .welcome-section p {
    font-size: 14px;
    color: var(--text-subtle-light);
}

.design-1 body.dark .welcome-section p {
    color: var(--text-subtle-dark);
}

@media (max-width: 1199px) {
    .design-1 .welcome-section {
        margin-bottom: 24px;
    }
}

@media (max-width: 991px) {
    .design-1 .welcome-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .design-1 .welcome-section h2 {
        font-size: 18px;
    }
}

.design-1 .login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.design-1 .form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 4px;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.design-1 body.dark .form-label {
    color: var(--text-dark);
}

.design-1 .input-wrapper {
    position: relative;
}

.design-1 .input-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-subtle-light);
    transition: color 0.3s;
}

.design-1 .form-group:focus-within .input-icon {
    color: var(--primary);
}

.design-1 body.dark .input-icon {
    color: var(--text-subtle-dark);
}

.design-1 .form-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: rgba(239, 239, 239, 0.5);
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s;
}

.design-1 body.dark .form-input {
    border-color: var(--border-dark);
    background: rgba(55, 65, 81, 0.5);
    color: var(--text-dark);
}

.design-1 .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(235, 80, 23, 0.1);
}

.design-1 .form-input::placeholder {
    color: var(--text-subtle-light);
}

.design-1 body.dark .form-input::placeholder {
    color: var(--text-subtle-dark);
}

@media (max-width: 767px) {
    .design-1 .form-input {
        padding: 10px 14px 10px 40px;
        font-size: 13px;
    }
}

.design-1 .forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .design-1 .forgot-link:hover {
        color: var(--primary-hover);
    }

.design-1 .submit-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, var(--primary), #c2410c);
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(235, 80, 23, 0.3);
    transition: all 0.3s;
    transform: translateY(0);
}

    .design-1 .submit-button:hover {
        background: linear-gradient(to right, var(--primary-hover), #9a3412);
        transform: translateY(-2px);
    }

    .design-1 .submit-button:active {
        transform: scale(0.95);
    }

    .design-1 .submit-button i {
        font-size: 14px;
    }

@media (max-width: 767px) {
    .design-1 .submit-button {
        padding: 10px 14px;
        font-size: 13px;
    }
}

.design-1 .signup-section {
    margin-top: 32px;
    text-align: center;
}

    .design-1 .signup-section p {
        font-size: 14px;
        color: var(--text-subtle-light);
    }

.design-1 body.dark .signup-section p {
    color: var(--text-subtle-dark);
}

.design-1 .signup-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .design-1 .signup-link:hover {
        color: var(--primary-hover);
    }

.design-1 .powered-by {
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.design-1 body.dark .powered-by {
    border-top-color: rgba(55, 65, 81, 0.5);
}

.design-1 .powered-by:hover {
    opacity: 1;
}

.design-1 .powered-by span {
    font-size: 10px;
    color: var(--text-subtle-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.design-1 body.dark .powered-by span {
    color: var(--text-subtle-dark);
}

/* Login-page-design-2 */

.design-2 body {
    background: var(--bg-light);
    color: var(--text-light);
}

    .design-2 body.dark {
        background: var(--bg-dark);
        color: var(--text-dark);
    }

.design-2 .container-fluid.p-0.h-100 {
    height: 100%;
}

.design-2 .row.no-gutters.h-100 {
    height: 100%;
    margin: 0;
}

.design-2 .page-wrapper {
    display: flex;
    min-height: 100vh;
    max-width: 1920px;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.design-2 .left-panel {
    position: relative;
    background: #0C111D;
    overflow: hidden;
    height: 100vh;
}

@media (max-width: 767px) {
    .design-2 .left-panel {
        height: auto;
        min-height: 50vh;
    }
}

.design-2 .glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
}

.design-2 .glow-orange {
    background: rgba(235, 80, 23, .2);
    top: -10%;
    right: -10%;
}

.design-2 .glow-blue {
    bottom: -10%;
    left: -10%;
}

.design-2 .glow-indigo {
    background: rgba(99, 102, 241, .1);
    top: 40%;
    left: 30%;
}

@media (max-width: 1199px) {
    .design-2 .glow {
        width: 400px;
        height: 400px;
        filter: blur(80px);
    }
}

@media (max-width: 767px) {
    .design-2 .glow {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }

    .design-2 .glow-orange {
        top: -20%;
        right: -20%;
    }

    .design-2 .glow-blue {
        bottom: -20%;
        left: -20%;
    }

    .design-2 .glow-indigo {
        top: 30%;
        left: 30%;
        width: 200px;
        height: 200px;
    }
}

.design-2 .center-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 140px;
}

.design-2 .core-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #FF9A3C);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(235, 80, 23, .4);
    animation: float 6s ease-in-out infinite;
}

.design-2 .core-inner {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #0C111D;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235, 80, 23, .3);
}

    .design-2 .core-inner span {
        font-size: 48px;
        color: var(--primary);
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        text-shadow: 0 0 10px rgba(235, 80, 23, .5);
    }

@media (max-width: 1199px) {
    .design-2 .core-circle {
        width: 110px;
        height: 110px;
    }

    .design-2 .core-inner {
        width: 80px;
        height: 80px;
    }

        .design-2 .core-inner span {
            font-size: 36px;
        }
}

@media (max-width: 767px) {
    .design-2 .core-circle {
        width: 80px;
        height: 80px;
    }

    .design-2 .core-inner {
        width: 60px;
        height: 60px;
    }

        .design-2 .core-inner span {
            font-size: 28px;
        }
}

.design-2 .orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.design-2 .orbit-sm {
    width: 300px;
    height: 300px;
    animation: orbit 20s linear infinite;
}

.design-2 .orbit-md {
    width: 480px;
    height: 480px;
    border-style: dashed;
    animation: orbit-reverse 25s linear infinite;
}

.design-2 .orbit-lg {
    width: 650px;
    height: 650px;
    opacity: .5;
}

@media (max-width: 1199px) {
    .design-2 .orbit-sm {
        width: 250px;
        height: 250px;
    }

    .design-2 .orbit-md {
        width: 400px;
        height: 400px;
    }

    .design-2 .orbit-lg {
        width: 540px;
        height: 540px;
    }
}

@media (max-width: 767px) {
    .design-2 .orbit-sm {
        width: 180px;
        height: 180px;
    }

    .design-2 .orbit-md {
        width: 280px;
        height: 280px;
    }

    .design-2 .orbit-lg {
        width: 380px;
        height: 380px;
    }
}

.design-2 .icon-orbit-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    animation: orbit 20s linear infinite;
}

.design-2 .icon-orbit-wrapper-large {
    width: 480px;
    height: 480px;
    animation: orbit-reverse 25s linear infinite;
}

@media (max-width: 1199px) {
    .design-2 .icon-orbit-wrapper {
        width: 250px;
        height: 250px;
    }

    .design-2 .icon-orbit-wrapper-large {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .design-2 .icon-orbit-wrapper {
        width: 180px;
        height: 180px;
    }

    .design-2 .icon-orbit-wrapper-large {
        width: 280px;
        height: 280px;
    }
}

.design-2 .module-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 17, 29, .8);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    transition: all .3s ease;
}

.design-2 .module-icon-sm {
    width: 48px;
    height: 48px;
}

.design-2 .module-icon-lg {
    width: 56px;
    height: 56px;
}

.design-2 .module-icon span {
    font-size: 20px;
}

.design-2 .module-icon-lg span {
    font-size: 24px;
}

.design-2 .module-icon:hover {
    transform: scale(1.1);
    border-color: rgba(235, 80, 23, .5);
    box-shadow: 0 0 15px rgba(235, 80, 23, .3);
}

.design-2 .icon-green {
    color: #4ade80;
}

.design-2 .icon-blue {
    color: #60a5fa;
}

.design-2 .icon-yellow {
    color: #fbbf24;
}

.design-2 .icon-purple {
    color: #a78bfa;
}

.design-2 .icon-indigo {
    color: #a5b4fc;
}

.design-2 .icon-pink {
    color: #f9a8d4;
}

.design-2 .icon-teal {
    color: #5eead4;
}

.design-2 .icon-orange {
    color: #fdba74;
}

.design-2 .module-tooltip {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #4ade80;
    font-weight: bold;
    background: rgba(21, 128, 61, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    opacity: 0;
    transition: opacity .3s ease;
    white-space: nowrap;
}

.design-2 .module-icon:hover .module-tooltip {
    opacity: 1;
}

@media (max-width: 767px) {
    .design-2 .module-icon-sm {
        width: 32px;
        height: 32px;
    }

    .design-2 .module-icon-lg {
        width: 40px;
        height: 40px;
    }

    .design-2 .module-icon span {
        font-size: 16px;
    }

    .design-2 .module-icon-lg span {
        font-size: 18px;
    }

    .design-2 .module-tooltip {
        font-size: 8px;
        padding: 1px 6px;
        top: -1.5rem;
    }
}

.design-2 .glass-panel {
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 224px;
    transition: transform .3s ease;
}

.design-2 .glass-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.design-2 .glass-content {
    flex: 1;
}

.design-2 .glass-title {
    font-size: 12px;
    font-weight: bold;
    color: #a5b4fc;
    margin-bottom: 4px;
}

.design-2 .highlight-text {
    color: #4ade80;
    font-weight: bold;
}

.design-2 .glass-panel-wrapper {
    position: absolute;
    z-index: 30;
}

.design-2 .glass-panel-right {
    right: 0;
    top: 25%;
}

.design-2 .rotate-3 {
    transform: rotate(3deg);
}

.design-2 .rotate-0 {
    transform: rotate(0deg);
}

.design-2 .rotate-neg-3 {
    transform: rotate(-3deg);
}

.design-2 .glass-panel:hover {
    transform: rotate(0deg);
}

.design-2 .glass-icon-color {
    color: #a5b4fc;
}

@media (max-width: 1199px) {
    .design-2 .glass-panel {
        width: 200px;
        padding: 12px;
    }

    .design-2 .glass-icon {
        width: 32px;
        height: 32px;
    }

    .design-2 .glass-title {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .design-2 .glass-panel {
        width: 180px;
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .design-2 .glass-panel {
        display: none;
    }
}

.design-2 .center-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
}

.design-2 .center-inner {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-2 .lines-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .design-2 .center-inner {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 991px) {
    .design-2 .center-inner {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .design-2 .center-inner {
        width: 300px;
        height: 300px;
    }
}

.design-2 .hero-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 45px;
    background: linear-gradient(to top, #0C111D, rgba(12, 17, 29, .9), transparent);
    z-index: 10;
}

.design-2 .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(235, 80, 23, .1);
    border: 1px solid rgba(235, 80, 23, .25);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

    .design-2 .badge .dot {
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        animation: pulse 4s infinite;
    }

.design-2 .hero-content h1 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #FFFFFF;
}

    .design-2 .hero-content h1 span {
        background: linear-gradient(to right, var(--primary), #FFB266);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.design-2 .hero-content p {
    font-size: 18px;
    color: #9CA3AF;
    max-width: 650px;
    line-height: 1.6;
}

.design-2 .features {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 14px;
    color: #9CA3AF;
}

.design-2 .sep {
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .design-2 .hero-content {
        padding: 30px;
    }

    .design-2 .badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .design-2 .hero-content h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .design-2 .hero-content p {
        font-size: 16px;
        max-width: 550px;
    }

    .design-2 .features {
        font-size: 13px;
        gap: 10px;
        margin-top: 16px;
    }
}

@media (max-width: 991px) {
    .design-2 .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .design-2 .hero-content p {
        font-size: 15px;
        max-width: 500px;
    }

    .design-2 .features {
        font-size: 12px;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .design-2 .hero-content {
        position: relative;
        background: transparent;
        padding: 20px;
        text-align: center;
    }

    .design-2 .badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .design-2 .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .design-2 .hero-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .design-2 .features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .design-2 .sep {
        display: none;
    }
}

.design-2 .right-panel {
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
}

.design-2 body.dark .right-panel {
    background: var(--surface-dark);
}

@media (max-width: 767px) {
    .design-2 .right-panel {
        height: auto;
        min-height: 50vh;
        padding: 40px 0;
    }
}

.design-2 .theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-subtle-light);
    z-index: 100;
}

.design-2 body.dark .theme-toggle {
    color: var(--text-subtle-dark);
}

.design-2 .theme-toggle:hover {
    color: var(--primary);
}

@media (max-width: 767px) {
    .design-2 .theme-toggle {
        top: 15px;
        right: 15px;
    }
}

.design-2 .login-box {
    width: 100%;
    max-width: 380px;
    text-align: left;
}

.design-2 .brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.design-2 .logo {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-2 .brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.design-2 body.dark .brand-name {
    color: var(--text-dark);
}

.design-2 .mt-20 {
    margin-top: 20px;
}

.design-2 .text-bold {
    font-weight: bold;
}

.design-2 .display-block {
    display: block;
}

.design-2 .login-header img {
    width: 330px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1199px) {
    .design-2 .login-box {
        max-width: 340px;
    }

    .design-2 .login-header img {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .design-2 .login-box {
        max-width: 300px;
    }

    .design-2 .login-header img {
        width: 240px;
    }
}

@media (max-width: 767px) {
    .design-2 .login-box {
        max-width: 100%;
        padding: 0 15px;
    }

    .design-2 .login-header img {
        width: 200px;
    }
}


.design-2 .text-primary {
    color: var(--primary) !important;
    text-decoration: none;
}

    .design-2 .text-primary:hover {
        color: var(--primary-hover) !important;
    }

.footer-links {
    display: flex;
    justify-content: right;
    color: #EB5017;
}


.footer-link {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    color: #EB5017;
}

    .footer-link:hover {
        color: #D1D5DB;
    }

.design-2 .powered-by {
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.design-2 body.dark .powered-by {
    border-top-color: rgba(55, 65, 81, 0.5);
}

.design-2 .powered-by:hover {
    opacity: 1;
}

.items {
    color: #EB5017;
    font-size: 18px;
    position: relative;
    top: 4px;
}

.design-2 .powered-by span {
    font-size: 10px;
    color: var(--text-subtle-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.design-2 body.dark .powered-by span {
    color: var(--text-subtle-dark);
}

@media (max-width: 1199px) {
    .design-2 .powered-by {
        margin-top: 24px;
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .design-2 .powered-by {
        margin-top: 20px;
        padding-top: 16px;
    }

        .design-2 .powered-by span {
            font-size: 9px;
        }
}


@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse {

    0%, 100% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }
}

.design-2 .animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}


@media (max-width: 767px) {

    .design-1 .row.no-gutters.h-100,
    .design-2 .row.no-gutters.h-100 {
        height: auto;
        flex-direction: column;
    }

    .design-1 .left-panel.col-md-7,
    .design-1 .right-panel.col-md-5,
    .design-2 .left-panel.col-md-7,
    .design-2 .right-panel.col-md-5 {
        width: 100% !important;
        height: auto !important;
        min-height: 50vh;
    }
}

.login2-box {
    /* width: 100%; */
    max-width: 440px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* position: relative;
    overflow: hidden; */
}

@media (max-width: 1199px) {
    .login2-box {
        padding: 28px;
        max-width: 400px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .design-2 .row.no-gutters.h-100 {
        flex-direction: row;
    }

    .design-2 .left-panel.col-md-7,
    .design-2 .right-panel.col-md-5 {
        width: 50% !important;
        height: 100vh !important;
    }

    .design-2 .hero-content h1 {
        font-size: 22px;
    }

    .design-2 .hero-content p {
        font-size: 14px;
    }

    .design-2 .center-inner {
        width: 300px;
        height: 300px;
    }
}

.design-2 .center-inner,
.design-2 .hero-content,
.design-2 .glass-panel-wrapper,
.design-2 .module-icon,
.design-2 .core-circle,
.design-2 .orbit,
.design-1 .module-container,
.design-1 .core-circle {
    transition: all 0.3s ease;
}
/* Privacy and Terms Modal Styling */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.modal-header {
    background: white;
    color: #2d3748;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
}

.modal-title {
    font-weight: 600;
    font-size: 1.3rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .modal-title i {
        color: #eb5017;
    }

.btn-close {
    opacity: 0.5;
    font-size: 1.5rem;
    border: none;
    background: transparent;
    padding: 5px;
    line-height: 1;
    cursor: pointer;
}

    .btn-close:hover {
        opacity: 1;
    }

.nav-tabs {
    padding: 2px 30px;
    margin-bottom: 0;
}

    .nav-tabs .nav-link {
        border: none;
        color: #6c757d;
        font-weight: 600;
        padding: 8px 10px;
        transition: all 0.3s ease;
        position: relative;
        background: transparent;
        border-radius: 0;
        margin-bottom: 0;
        font-size: 14px;
    }

        .nav-tabs .nav-link:hover {
            color: #eb5017;
            background: transparent;
        }

        .nav-tabs .nav-link.active {
            color: #eb5017;
            border: none;
        }

            .nav-tabs .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(135deg, #eb5017 0%, #ff7849 100%);
                border-radius: 3px 3px 0 0;
                animation: slideIn 0.3s ease;
            }

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Modal body styling */
.modal-body {
    padding: 25px 30px;
    max-height: 55vh;
    overflow-y: auto;
}

    .modal-body::-webkit-scrollbar {
        width: 6px;
    }

    .modal-body::-webkit-scrollbar-track {
        background: #f8f9fa;
        border-radius: 10px;
    }

    .modal-body::-webkit-scrollbar-thumb {
        background: #eb5017;
        border-radius: 10px;
    }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #ff7849;
        }

.tab-content {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Compact content styling */
.content-section {
    margin-bottom: 15px;
    padding-bottom: 12px;
}

    .content-section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .content-section h5 {
        color: #eb5017;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.3;
    }

    .content-section p {
        color: #495057;
        line-height: 1.5;
        margin-bottom: 8px;
        font-size: 13px;
    }

    .content-section ul {
        padding-left: 18px;
        margin-bottom: 8px;
    }

    .content-section li {
        color: #495057;
        line-height: 1.5;
        margin-bottom: 4px;
        font-size: 13px;
    }

    .content-section b {
        display: block;
        margin: 8px 0 5px 0;
        color: #333;
        font-weight: 600;
        font-size: 13px;
    }

    .content-section a {
        color: #eb5017;
        text-decoration: none;
    }

        .content-section a:hover {
            text-decoration: underline;
        }

.modal-footer {
    padding: 10px 30px;
    background: #f8fafc;
    border-radius: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #eb5017 0%, #ff7849 100%);
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(235, 80, 23, 0.3);
    }

.btn-secondary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: #e2e8f0;
        border-color: #cbd5e0;
    }

/* Footer links styling */
.footer-links {
    margin-top: 20px;
}

.footer-link {
    color: #eb5017;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    margin-right: 20px;
    cursor: pointer;
}

    .footer-link:hover {
        color: #ff7849;
        text-decoration: underline;
    }

    .footer-link:last-child {
        margin-right: 0;
    }

/* Fix for Bootstrap 3 tabs */
.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

/* Responsive fixes for modal */
@media (max-width: 768px) {
    .modal-lg {
        width: 95%;
        margin: 10px auto;
    }

    .modal-content {
        border-radius: 15px;
    }

    .modal-header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .modal-title {
        font-size: 1.1rem;
        flex: 1;
        min-width: 200px;
    }

    .btn-close {
        font-size: 1.3rem;
        padding: 3px;
    }

    .nav-tabs {
        padding: 0 15px;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        display: flex;
    }

        .nav-tabs .nav-link {
            padding: 10px 12px;
            font-size: 13px;
            white-space: nowrap;
        }

    .modal-body {
        padding: 15px 20px;
        max-height: 60vh;
    }

    .modal-footer {
        padding: 12px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .content-section h5 {
        font-size: 13px;
    }

    .content-section p,
    .content-section li,
    .content-section b {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .modal-lg {
        width: 98%;
        margin: 5px auto;
    }

    .modal-header {
        padding: 12px 15px;
    }

    .modal-title {
        font-size: 1rem;
    }

    .nav-tabs {
        padding: 0 10px;
    }

        .nav-tabs .nav-link {
            padding: 8px 10px;
            font-size: 12px;
        }

    .modal-body {
        padding: 12px 15px;
        max-height: 55vh;
    }

    .modal-footer {
        padding: 10px 15px;
    }

    .content-section {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

        .content-section h5 {
            font-size: 12px;
            margin-bottom: 6px;
        }

        .content-section p,
        .content-section li {
            font-size: 11px;
            line-height: 1.4;
            margin-bottom: 6px;
        }

        .content-section ul {
            padding-left: 15px;
        }
}

@media (max-height: 600px) {
    .modal-body {
        max-height: 50vh;
    }
}

@media (max-height: 500px) {
    .modal-body {
        max-height: 45vh;
    }
}

/* Print styles */
@media print {
    body * {
        visibility: hidden;
    }

    #printArea,
    #printArea * {
        visibility: visible;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        display: block;
    }

    .content-section {
        page-break-inside: avoid;
    }

        .content-section h5 {
            color: #000;
        }
}
