      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
            min-height: 100vh;
        }

        .login-container {
            display: flex;
            min-height: 100vh;
            background: white;
        }

        .left-section {
            flex: 1;
            padding: 5px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 500px;
        }

        .logo {
            font-size: 18px;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .back-button {
            position: absolute;
            top: 69px;
            left: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-right: 5px;
            z-index: 10;
        }

        .back-button:hover {
            background: #f8f9fa;
            transform: translateX(-3px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .back-button i {
            font-size: 18px;
            color: #333;
        }

        .title {
            font-size: 35px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .social-login {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .social-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .social-btn i {
            font-size: 20px;
        }

        .divider {
            text-align: center;
            margin: 30px 0;
            color: #999;
            font-size: 14px;
        }

        .form-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            margin-bottom: 20px;
            background: #fafafa;
        }

        .form-control:focus {
            border-color: #2d5f3f;
            box-shadow: 0 0 0 0.2rem rgba(45, 95, 63, 0.1);
            background: white;
        }

        .password-field {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top:70%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #999;
        }

        .btn-start {
            background: #2d5f3f;
            color: white;
            border: none;
            border-radius: 25px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            width: 100%;
            margin-top: 10px;
            transition: all 0.3s;
        }

        .btn-start:hover {
            background: #234a31;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }

        .login-link a {
            color: #2d5f3f;
            text-decoration: none;
            font-weight: 600;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        .right-section {
            flex: 1.2;
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1682687220742-aba13b6e50ba?w=1200&h=800&fit=crop');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
        }

        .location-badge {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .location-icon {
            width: 30px;
            height: 30px;
            background: rgba(45, 95, 63, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-text {
            font-size: 13px;
            color: #333;
        }

        .location-title {
            font-weight: 600;
            margin: 0;
        }

        .location-subtitle {
            font-size: 11px;
            color: #666;
            margin: 0;
        }

        .distance-badge {
            position: absolute;
            top: 50%;
            right: 15%;
            background: rgba(45, 95, 63, 0.85);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 15px;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .distance-value {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
        }

        .distance-text {
            font-size: 11px;
            margin: 0;
            opacity: 0.9;
        }

        .trail-badge {
            position: absolute;
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            color: #333;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 992px) {
            .login-container {
                flex-direction: column;
            }

            .left-section {
                max-width: 100%;
                padding: 40px 30px;
            }

            .right-section {
                min-height: 400px;
            }
        }
