:root {
    /* Define variables for easy customization based on the logo theme */
    --bg-dark: #060814;          /* Deep blue-black background from the logo */
    --cyan: #00CCCC;
    --neon-cyan: #00ffe7;       /* Bright teal-cyan from the wave and first text part */
    --neon-teal: #00d4ca;
    --neon-navy-blue: #4d5466;
    --amber: #e5ba73;
    --references: #ffd987;
    --field-bg: #101426;        /* A slightly lighter, deep blue for the field interior */
    --text-color: #00ffe7;      /* Primary text color (matching the cyan part) */
    --placeholder-color: rgba(0, 255, 231, 0.7); /* Semi-transparent cyan for placeholder */
    --transition: all 0.3s ease; /* Smooth transition for effects */
    --text-muted: #B0B0B0;

    --bg: #0f1216;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --accent: #3b82f6; /* Electric Blue from your image */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --text-dim: #94a3b8;
    --text-primary: #192430;
    --panel-blue: #1a2b3c;

    --plat-light: #ffffff;
    --plat-mid: #b8b8b8;
    --plat-dark: #666666;
    --plat-glint: #f0f0f0;

    --font-title: 24px;
    --font-head: 20px;
    --font-primary: 14px;
    --font-secondary: 12px;
    --font-small: 12px;
    --font-family: "Segoe UI", sans-serif;
}


/* Arabic / Hebrew (RTL) */
[dir="rtl"] {
    --font-family: "Harmattan", sans-serif;
}


* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-size: var(--font-primary);
    font-family: var(--font-family);
}

body {
    background-color: var(--bg);
    background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f1216 100%);
    color: white;
    display: flex;
    justify-content: center;
    
}


.main-container {
    width: 100%;
    max-width: 380px;
}


.input-group { 
    margin-bottom: 20px; 
}

.input-group label { 
    display: block; 
    font-size: var(--font-secondary);
    text-transform: uppercase; 
    color: var(--text-dim); 
    /* margin-inline-start: 15px;  */
    margin-bottom: 8px; 
    font-weight: 700; 
    letter-spacing: 1px; 
}
        
input, select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4), inset -1px -1px 2px rgba(255,255,255,0.05);
    border-radius: 18px;
    /* padding: 15px; */
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus { border-color: var(--accent); }


.navbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 60px;
  align-items: center;
  background-color: #141a21e6;
}


.logo {
  font-size: 20px;
  font-weight: bold;
}


.menu a {
  margin-inline-start: 20px;
  text-decoration: none;
  color: white;
}

.navbar {
  position: relative;
  z-index: 2; /* above the overlay */
}
.content {
    z-index: 2; /* above the overlay */
}


.page {
  height: 100vh;
  width: 100%;
  background-size: cover; 
  position: relative;
  color: white;
}

.page:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

a {
  color: var(--references);
  text-decoration: none;
}

.menu { 
  width: 50%; 
  text-align: end;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    margin-inline-start: 20px;
    margin-inline-end: 10px;
}

.select-wrapper i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    margin-top: 1px;
}

[dir="rtl"] .select-wrapper i {
    margin-left: 7px;
}

.select-wrapper select {
    padding-left: 25px !important;
}

#languageSwitcher {
    background-color: rgb(20 26 33) !important;
    border-color: #e5ba73 !important;
    padding-top: 1px !important;
    padding-bottom: 1px !important;
    border-radius: 18px !important;
}

.login {
    margin: 2px;
}


.tooltip {
    position: relative;
    cursor: pointer;
    margin-top: 5px;
}

.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #ffffff;
    color: #282e36;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    margin-inline-start: -72px;
    font-weight: initial;
    margin-top: 10px;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: -36%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    rotate: 180deg;
}
