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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
           background: linear-gradient(135deg, #0b5b32 0%, #1d1e23 50%, #152d0f 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Background chart lines */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
			background-color:#1e293bf2;
            background-image: 
                linear-gradient(45deg, rgba(74, 144, 226, 0.1) 1px, transparent 1px),
                linear-gradient(-45deg, rgba(74, 144, 226, 0.1) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.3;
            z-index: 0;
        }


/* Chrome, Safari, Edge */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0d0f14; /* dark track to blend with dark UI */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(180, 185, 200, 0.2); /* light thumb with opacity */
    border-radius: 10px;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(180, 185, 200, 0.2) #0d0f14;
}

.sign__title {
    margin-bottom: 32px;
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
}

        /* Chart line pattern */
        .chart-lines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' stroke='%234a90e2' stroke-width='1' fill='none' opacity='0.2'/%3E%3C/svg%3E") repeat-x;
            background-size: 200px 100px;
            animation: float 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes float {
            0%, 100% { transform: translateX(0px); }
            50% { transform: translateX(-50px); }
        }

        .container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 12px 12px;
            flex-direction: column;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            position: relative;
            z-index: 10;
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }
 
         

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
    
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}

        .nav-menu a:hover {
            color: white;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

      
            .login-btn {
    /* color: #8892b0; */
    text-decoration: none;
    /* font-size: 15px; */
    transition: color 0.3s ease;
    /* background: #ccc; */
    background: #cdd1de;
    border-radius: 4px;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-right: 12px;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
}
     

        .login-btn:hover {
            color: white;
        }

        .signup-btn {
padding: 12px 20px;
    color: #fff;
    background: #0faf59;
    box-shadow: 0 4px 10px 0 rgba(53, 184, 114, .25);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    white-space: nowrap;
        }

        .signup-btn:hover {
            transform: translateY(-1px);
        }

        .language-selector {
            color: #8892b0;
            font-size: 15px;
            margin-left: 10px;
        }

        /* Main content */
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
			background: url(img/bg.png) no-repeat;
            padding: 40px;
        }

        .login-container {
            background: rgba(71, 85, 105, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            max-width: 498px;
			padding: 40px;
    
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .login-title {
            color: white;
            font-size: 28px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
        }

        .tab-container {
          display: flex
;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 8px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
        }

        .tab {
          background: 0 0;
    border: 0;
    color: #fff;
    padding: 10px 24px;
    font-weight: 900;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
        }

        .tab.active {
          background: #353a4d;
    box-shadow: 2px 2px 6px rgba(53, 58, 77, .03);
    border-radius: 4px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 16px;
            background: rgba(51, 65, 85, 0.6);
            border: 1px solid rgba(71, 85, 105, 0.5);
            border-radius: 8px;
            color: white;
            font-size: 15px;
            transition: border-color 0.3s ease;
        }

        .form-input::placeholder {
            color: #8892b0;
        }

        .form-input:focus {
            outline: none;
            border-color: #4a90e2;
        }

        .form-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
        }

        .checkbox-container input[type="checkbox"] {
               margin-right: 8px;
    accent-color: #4a90e2;
    height: 24px;
    width: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-sizing: border-box;
        }

        .checkbox-container label {
            color: #8892b0;
            font-size: 14px;
        }

        .forgot-password {
            color: #4a90e2;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .forgot-password:hover {
            color: #63b8ff;
        }
		
		.trst {
           color: #fff;
    text-decoration: none;
        }

        .signin-btn {
          max-width: 366px;
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 19px 0;
    margin: 0 auto;
    background: linear-gradient(90deg, #28a745, #00c18d);
    box-shadow: 0 4px 10px rgba(2, 111, 211, .25);
    border-radius: 4px;
    
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    border: 0;
    cursor: pointer;
        }

        .signin-btn:hover {
            transform: translateY(-1px);
        }

        .signin-via {
            text-align: center;
            color: #8892b0;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .social-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            transition: transform 0.2s ease;
        }

        .facebook-btn {
            background: #4267B2;
        }

        .google-btn {
            background: linear-gradient(45deg, #DB4437, #EA4335);
        }

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

        /* Footer Styles */
        .footer {
            background: rgba(30, 41, 59, 0.95);
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 12px 12px;
            border-top: 1px solid rgba(71, 85, 105, 0.3);
            padding: 60px 0 0 0;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #8892b0;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section h4 i {
            font-size: 12px;
        }

        .footer-subsection {
            margin-bottom: 30px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #4a90e2;
        }

        .footer-links a i.fa-external-link-alt {
            font-size: 10px;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .download-text, .social-text {
            color: #8892b0;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .google-play-btn {
            display: flex;
            align-items: center;
            background: #000;
            color: white;
            padding: 12px 16px;
            border-radius: 8px;
            text-decoration: none;
            gap: 12px;
            transition: transform 0.2s ease;
            width: fit-content;
        }

        .google-play-btn:hover {
            transform: translateY(-1px);
        }

        .google-play-btn img {
            width: 24px;
            height: 24px;
        }

        .google-play-btn span {
            font-size: 12px;
            line-height: 1.2;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #64748b;
            text-decoration: none;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .social-link:hover {
            color: #4a90e2;
        }

        .social-link i {
            width: 20px;
            font-size: 18px;
        }

        .social-link.facebook i {
            color: #4267B2;
        }

        .social-link.instagram i {
            color: #E4405F;
        }

        .social-link.telegram i {
            color: #0088cc;
        }

        .social-link span {
            font-size: 14px;
            font-weight: 600;
        }

        .footer-bottom {
            background: rgba(20, 28, 40, 0.95);
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 12px 12px;
            padding: 30px 40px;
            border-top: 1px solid rgba(71, 85, 105, 0.2);
        }

        .company-info {
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

        .company-info p {
            color: #8892b0;
            font-size: 14px;
            line-height: 1.5;
        }

        .legal-text {
            max-width: 1200px;
            margin: 0 auto;
        }

        .legal-text p {
            color: #64748b;
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .legal-text p:last-child {
            margin-bottom: 0;
            color: #8892b0;
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .login-container {
                padding: 30px 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .footer-bottom {
                padding: 20px;
            }

            .google-play-btn {
                width: 100%;
                justify-content: center;
            }
        }
		
		.lgcontainer {
    max-width: 498px;
    
    color: #fff;
}

.ted {
    padding-bottom: 25px;
    margin-bottom: 33px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

    .flag-btn {
      background: none;
      border: none;
      font-size: 28px;
      color: #fff;
      cursor: pointer;
      position: relative;
      z-index: 10;
    }

    .language-popup {
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: #3b4252;
      border-radius: 10px;
      padding: 20px 30px;
      display: grid;
      grid-template-columns: repeat(2, max-content);
      gap: 14px 40px;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
      display: none;
    }

    .language-popup div {
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .language-popup div:hover {
      color: #63b3ed;
    }
	
	.form-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-box form .form-group,
.form-box form input[type="text"],
.form-box form input[type="email"],
.form-box form input[type="password"],
.form-box form select {
  width: 100%;
}

.form-box form .checkbox-group,
.form-box form button {
  grid-column: span 2;
}
  

 .form-box {
     
    border-radius: 10px;
   
    font-family: 'Segoe UI', sans-serif;
  }

  .form-group {
    position: relative;
    margin-bottom: 20px;
  }

  .form-group input{
    width: 100%;
    padding: 14px 12px 14px 16px;
    background: transparent;
    border: 1px solid #6b7280;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    appearance: none;
  }

  .form-group label {
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 11px;
    background-color: #3b4252;
    padding: 0 4px;
    color: #fff;
    pointer-events: none;
    transition: 0.2s;
  }

  .form-group select.form-input {
    
    color: #fff;
    border: 1px solid rgb(255 255 255 / 61%);
    max-height: 200px;
    overflow-y: auto;
    appearance: none;
  }

  .form-group select.form-input option {
    background-color: #2d3748;
    color: #fff;
  }

  option[value] {
    background-color: #2d3748 !important;
    color: #fff !important;
  }

  .select2-container--default .select2-selection--single {
    background-color: #2d3748;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 6px;
    height: 45px;
  }

  .select2-container--default .select2-results__option {
    background-color: #2d3748;
    color: #fff;
  }

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    background-color: rgba(51, 65, 85, 0.6);
    height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 28px;
    margin-top: 10px !important;
}

  .select2-container--default .select2-results__option--highlighted {
    background-color: #4a5568;
  }
  .form-group input:focus + label,
  .form-group select:focus + label,
  .form-group input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 11px;
    background-color: #3b4252;
    padding: 0 4px;
    color: #63b3ed;
  }

 
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .checkbox-group input {
    margin-top: 2px;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #4fd1c5;
  }

  .checkbox-group label {
    font-size: 14px;
    color: #cbd5e1;
  }

  .checkbox-group a {
    color: #63b3ed;
    text-decoration: none;
    font-weight: 500;
  }

  .checkbox-group a:hover {
    text-decoration: underline;
  }