
        :root {
            --primary-color: #fe8800;
            --secondary-color: #0c4e8a;
            --accent-color: #2a9d8f;
            --text-color: #333;
            --light-text: #666;
            --lightest-text: #999;
            --bg-color: #f8f9fa;
            --white: #ffffff;
            
            --color-safran: #FFA726;
            --color-forest: #2E7D32;
            --color-azure: #0288D1;
            --color-sand: #F5F5DC;
            --color-charcoal: #212121;
            --color-safran-light: #FFD180;
            --color-forest-light: #81C784;
            --color-azure-light: #4FC3F7;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--color-sand);
            color: var(--color-charcoal);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-image: url('../images/logo.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        a {
            text-decoration: none;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .circuitbadge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            z-index: 105;
        }
        
        .logo {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .logo p {
            font-family: 'Poppins', sans-serif;
            color: white;
            font-size: 1.2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .auth-container {
            width: 100%;
            max-width: 900px;
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: row;
        }
        
        .auth-image {
            flex: 1;
            background-image: url('../images/amazone.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
        }
        
        .auth-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        
        .auth-image-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .auth-image-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .auth-image-content p {
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .destination-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .tag {
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .auth-forms {
            flex: 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
        }
        
        .tabs {
            display: flex;
            margin-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        
        .tab {
            flex: 1;
            text-align: center;
            padding: 0.8rem 0;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: #777;
            cursor: pointer;
            position: relative;
            transition: var(--transition);
        }
        
        .tab.active {
            color: var(--color-safran);
        }
        
        .tab::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-safran);
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .tab.active::after {
            transform: scaleX(1);
        }
        
        .form-container {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .form {
            display: none;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .form.active {
            display: flex;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            color: #555;
        }
        
        .input-icon-wrapper {
            position: relative;
        }
        
        .input-icon-wrapper i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
            transition: var(--transition);
        }
        
        .form-input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            color: var(--color-charcoal);
            transition: var(--transition);
        }
        
        .form-input:focus {
            border-color: var(--color-safran);
            box-shadow: 0 0 0 2px rgba(255, 167, 38, 0.2);
            outline: none;
        }
        
        .form-input:focus + i {
            color: var(--color-safran);
        }
        
        .form-group .toggle-password {
            position: absolute;
            left: 21rem;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .form-group .toggle-password:hover {
            color: var(--color-safran);
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        
        .checkbox-wrapper {
            display: flex;
            align-items: center;
        }
        
        .checkbox-wrapper input {
            margin-right: 0.5rem;
        }
        
        .forgot-password {
            color: var(--color-azure);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .forgot-password:hover {
            color: var(--color-safran);
            text-decoration: underline;
        }
        
        .btn {
            padding: 0.8rem 1.5rem;
            background-color: var(--color-safran);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background-color: #F57C00;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .btn:active {
            transform: translateY(0);
            box-shadow: none;
        }
        
        .btn i {
            margin-right: 0.5rem;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus::after, .btn:active::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        .social-login {
            text-align: center;
            margin-top: 2rem;
        }
        
        .social-login p {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .social-login p::before,
        .social-login p::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 25%;
            height: 1px;
            background-color: #ddd;
        }
        
        .social-login p::before {
            left: 0;
        }
        
        .social-login p::after {
            right: 0;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .social-icon.facebook {
            background-color: #3b5998;
        }
        
        .social-icon.google {
            background-color: #DB4437;
        }
        
        .social-icon.twitter {
            background-color: #1DA1F2;
        }
        
        .travel-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.06;
        }
        
        .travel-icon {
            position: absolute;
            font-size: 2rem;
            color: var(--color-forest);
            animation: float 15s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .auth-container {
                flex-direction: column;
                max-width: 500px;
            }
            
            .auth-image {
                min-height: 250px;
            }
            
            .logo h1 {
                font-size: 2.2rem;
            }
            
            .logo p {
                font-size: 1rem;
            }
            
            .auth-forms {
                padding: 2rem 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 1.5rem;
            }
            
            .auth-image {
                min-height: 200px;
                padding: 1.5rem;
            }
            
            .auth-image-content h2 {
                font-size: 1.5rem;
            }
            
            .auth-forms {
                padding: 1.5rem;
            }
            
            .remember-forgot {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }