/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(30,28): run-time error CSS1039: Token not allowed after unary operator: '-bg'
(31,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(32,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(37,52): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(37,71): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(46,28): run-time error CSS1039: Token not allowed after unary operator: '-card-bg'
(49,34): run-time error CSS1039: Token not allowed after unary operator: '-shadow'
(54,1): run-time error CSS1019: Unexpected token, found '@'
(54,2): run-time error CSS1019: Unexpected token, found '@keyframes'
(55,10): run-time error CSS1035: Expected colon, found '{'
(102,1): run-time error CSS1019: Unexpected token, found '@'
(102,2): run-time error CSS1019: Unexpected token, found '@keyframes'
(103,10): run-time error CSS1035: Expected colon, found '{'
(182,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(193,22): run-time error CSS1039: Token not allowed after unary operator: '-input-bg'
(202,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(209,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(211,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(217,28): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(226,1): run-time error CSS1019: Unexpected token, found '@'
(226,2): run-time error CSS1019: Unexpected token, found '@keyframes'
(227,10): run-time error CSS1035: Expected colon, found '{'
(241,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(245,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(269,21): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(277,28): run-time error CSS1039: Token not allowed after unary operator: '-input-bg'
(278,17): run-time error CSS1039: Token not allowed after unary operator: '-text'
(280,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(285,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(307,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(309,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(313,21): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(326,22): run-time error CSS1039: Token not allowed after unary operator: '-transition'
(331,45): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(331,61): run-time error CSS1039: Token not allowed after unary operator: '-secondary'
(343,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(344,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(352,32): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(378,1): run-time error CSS1019: Unexpected token, found '@'
 */
:root {
    --primary: #4FC3F7; /* Sky blue */
    --secondary: #FFB74D; /* Light orange */
    --text: #333333;
    --bg: #ffffff;
    --card-bg: #f9f9f9;
    --input-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.dark-mode {
    --primary: #29B6F6;
    --secondary: #FF9800;
    --text: #f5f5f5;
    --bg: #121212;
    --card-bg: #1e1e1e;
    --input-bg: #2d2d2d;
    --shadow: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow);
    animation: fadeIn 1s ease;
    position: relative;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-panel {
    flex: 1;
    background: linear-gradient(rgba(79, 195, 247, 0.85), rgba(255, 183, 77, 0.85)), url('../../Images/login-bg.jpg') center/cover;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    /* Fallback background if image doesn't load */
    .left-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(79, 195, 247, 0.7), rgba(255, 183, 77, 0.7));
        z-index: 0;
    }

.left-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease;
}

@@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

    .logo-text .acronym {
        font-size: 28px;
        display: block;
        margin-bottom: 2px;
    }

    .logo-text .full-form {
        font-size: 14px;
        opacity: 0.9;
        font-weight: 400;
    }

.left-panel h1 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease 0.2s both;
}

.left-panel p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease 0.4s both;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: slideInLeft 1s ease 0.6s both;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.company-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

    .company-logo:hover {
        opacity: 1;
    }

.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--input-bg);
    border: none;
    width: 50px;
    height: 25px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: var(--transition);
    z-index: 10;
}

.toggle-circle {
    width: 18px;
    height: 18px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    transform: translateX(0);
}

.dark-mode .toggle-circle {
    transform: translateX(25px);
    background-color: var(--secondary);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideInRight 1s ease;
}

@@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
}

.login-header p {
    color: var(--text);
    opacity: 0.8;
}

.form-group {
    margin-bottom: 20px;
    animation: slideInRight 1s ease 0.2s both;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
}

    .input-with-icon i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
    }

input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: var(--input-bg);
    color: var(--text);
    font-size: 16px;
    transition: var(--transition);
}

    input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
    }

.options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    animation: slideInRight 1s ease 0.4s both;
}

.remember {
    display: flex;
    align-items: center;
}

    .remember input {
        width: auto;
        margin-right: 8px;
    }

.links a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

    .links a:hover {
        color: var(--secondary);
        text-decoration: underline;
    }

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    animation: slideInRight 1s ease 0.6s both;
}

.login-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    margin-bottom: 20px;
}

    .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
    }

.mobile-btn {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .mobile-btn:hover {
        background-color: var(--primary);
        color: white;
    }

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
    animation: slideInRight 1s ease 0.8s both;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.copyright-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
}

@@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 450px;
    }

    .left-panel {
        padding: 30px;
    }

        .left-panel h1 {
            font-size: 28px;
        }

    .features {
        justify-content: center;
    }

    .company-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 15px;
        align-self: flex-start;
    }

    .right-panel {
        padding: 30px;
    }
}

