body {
    background: #e6e6ff;
    margin: 0;
    padding: 0;
  }

  body, .navbar, .navbar-nav a {
    font-family: 'Lexend', sans-serif;
  }
  
  /* Navigation bar */
  #scanfcode {
    border-radius: 0px;
    background: #fff;
    padding: 10px;
    font-size: 17px;
/*    border-bottom: 1px solid #f05e2f;*/
    margin-bottom: 0px;
  }
  
  /* Logo */
  #logo {
    display: flex;
    align-items: center;
    text-decoration: none; /* Menghapus garis bawah link */
    color: inherit; 
    font-size:25px;
    color:#2e2d75;
  }



.logo-img {
    width: 120px;  /* Sesuaikan ukuran logo */
    height: auto; /* Menjaga aspek rasio */
    margin-right: 10px; /* Beri jarak antara logo dan teks */
    margin-top: 10px;
}
  
  /* Navigation links */
  #link a {
/*    color:#2e2d75;
    margin: 0 20px 0 10px;
    letter-spacing: 1.5px;*/
    color: #2e2d75;
  }
 
   #link a:hover {
    border-bottom: solid;
    border-bottom-width: 2px;
    border-bottom-color: #cccccc;
  } 

   .visited {
    font-weight: bold;
    border-bottom: solid;
    border-bottom-width: 2px;
    border-bottom-color: #f05e2f;
  } 

  /* Navigation link with right border */
  #first-link {
    padding-right: 6px;
    border-right: solid 1px #ccc;
  }
  
  /* Sign Up button and Toggle button */
  #button-link a,
  #toggle-button {
    color: #f2f2f2;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    background-color: #fa6a48;
    line-height: 17px;
    padding: 5px 10px;
    margin: auto;
  }
  /* Mengatur jarak antara "Login" dan "Posting Job" */
.navbar-nav li {
    margin-right: 5px; /* Kurangi jarak antar elemen */
  }
  
  /* Khusus untuk "Login" dan "Posting Job" */
  .navbar-nav li:last-child,
  .navbar-nav li:nth-last-child(2) {
    margin-right: 5px; /* Jarak lebih dekat */
  }
  
  /* Hover effect */
  #button-link a:hover {
    background-color: #e65c3d;
    text-decoration: none;
  }
  
  .navbar-toggle {
    border: 1px solid #fa6a48;
  }
  
  /* Style untuk ikon bahasa */
/* Pastikan navbar menggunakan flex untuk perataan horizontal */
.navbar-nav {
    display: flex;
    align-items: center; /* Menyelaraskan ikon dengan teks */
  }
  
  /* Style untuk ikon bahasa */
  .language-icon {
    margin-left: 8px; /* Jarak antara Sign In dan ikon Indonesia */
  }
  
  .language-icon + .language-icon {
    margin-left: -14px; /* Jarak antara ikon Indonesia dan Inggris lebih dekat */
  }
  
  .language-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* Ukuran lingkaran */
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fa6a48; /* Border oranye */
    transition: transform 0.3s ease-in-out ;

}

  .language-icon img {
    width: 630%;   /* Agar gambar mengisi lingkaran */
    height: 630%;
    object-fit: cover;  /* Memastikan gambar tidak terdistorsi */
    border-radius: 50%; /* Agar tetap bulat */
    margin-left:-15px;
    margin-top:-15px;
  }
  
  /* Efek hover */
  .language-icon a:hover {
    transform: scale(1.1);
  }
        .container {
            display: flex;
            width: 800px;
            background: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/*            border-radius: 10px;*/
            overflow: hidden;
        }
        .login-box {
            flex: 1;
            padding: 40px;
        }
        .login-box h2 {
            margin-bottom: 20px;
        }
        .login-box input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .password-wrapper {
            position: relative;
        }
        .password-wrapper input {
            width: calc(100% - 30px);
        }
        .toggle-password {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }
        .options {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .options a {
            text-decoration: none;
            color: #007bff;
        }
        button {
            width: 100%;
            padding: 10px;
            background: #2c3e50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .resend {
            display: block;
            text-align: center;
            margin-top: 10px;
            color: #555;
            font-size: 14px;
        }
        .register {
            color: #e74c3c;
            font-weight: bold;
            text-decoration: none;
        }
        .image-box {
            flex: 1;
         
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .image-box img {
            max-width: 100%;
            height: auto;
        }
  