/* Navbar container */
.navbar {
    background-color: #0e0018;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    max-width: 1108px;
    margin: 0 auto;
  }
  
  /* Logo styling */
  .navbar-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  
  
  /* Buttons container */
  .navbar-buttons {
    display: flex;
    align-items: center;
  }
  
  .navbar-buttons .btn {
    margin-left: 10px;
    display: flex;
    align-items: center; 
    justify-content: center; 
  
    font-weight: bold;
    cursor: pointer;
    font-size: 14px; 
  }
  
  /* Login button */
  .login-btn {
    background: none;
    color: white;
    border: 0.5px solid white;
    border-radius: 5px;
    padding: 9px 20px;
  }
  
  .login-btn .btn-link {
    display: flex;
    align-items: center;
    gap: 8px; 
    text-decoration: none;
    color: inherit;
  }
  
  .login-btn .btn-link img {
    height: 17px;
    width: auto;
    vertical-align: middle; 
  }
  
  /* Sign-up button */
  .signup-btn {
    background: #ff4291;
    color: white;
    border-radius: 5px;
    border: none;
    padding: 10px 20px;
  }
  
  /* Hover effects */
  .navbar-buttons .btn a:hover {
    text-decoration: none;
  }
  
  .signup-btn:hover {
    background: #e83e82; 
  }
  
  .navbar-buttons .btn a {
    text-decoration: none; 
    color: inherit; 
  }
  
  .navbar-logo .logo-horizontal {
    display: block;
    height: 38px;
    width: auto;
  }
  
  .navbar-logo .logo-vertical {
    display: none;
  }