/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    align-items: center;
    background: #f7f9fa;
    padding: 15px 20px;
    justify-content: space-between;
    position: relative;
}

.navbar .nav-links {
    @media screen and  (max-width: 900px) {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 50px;
        right: 0px;
        padding: 20px;
        width: 300px;
        height: 500px;
        border-radius: 8px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        text-align: center;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.4s ease;
        z-index: 99;
    }
}

 .nav-links.active {
    display: flex;
}

.nav-links.show {
  @media screen and (max-width: 900px) {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.navbar img {
    width: 250px;
    height: 9vh;
    padding-left: 30px;
    margin-top: 20px;
}

/* .navbar img {
    margin-top: 20px;
} */
/* 
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-top: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;

    @media screen and (max-width: 768px){
      color: white;
      font-size: 20px;
    }
}

.hambuger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    padding: 6px;
    z-index: 100;
    justify-content: space-between;
    flex-direction: column;


    @media screen and (max-width: 900px) {
        display: block;
    }
}  */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.head {
  background-color: #f7f9fa;;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: cyan;
}

/* Hamburger Icon */
.hamburger {
  width: 30px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: black;
  height: 3px;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger Animation - Turn into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
    padding: 20px 10px;
    animation: slideDown 0.4s ease forwards;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





















.sign-up {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      animation: fadeIn 1s ease-in-out;
      background-image: url('c:/Users/user/Desktop/Broker/images/logo10.png');
      background-size: cover;
      /* background: linear-gradient(to right, #00C2CB, #f1f4f8); */
    }

    .sign-up-box {
      width: 100%;
      max-width: 500px;
      background: white;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      animation: slideUp 0.8s ease;
    }

    .sign-up-box h1 {
      font-size: 24px;
      color: #333;
      margin-bottom: 10px;
    }

    .price-label {
      color: #00C2CB;
      font-weight: bold;
      margin-bottom: 25px;
      font-size: 18px;
    }

    #sign-up-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    #sign-up-form input {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      transition: border-color 0.3s;
    }

    #sign-up-form input:focus {
      border-color: #00C2CB;
      outline: none;
    }

    #sign-up-form button {
      padding: 12px;
      background-color: #00C2CB;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.2s;
    }

    #sign-up-form button:hover {
      background-color: #009aa1;
      transform: scale(1.03);
    }

    .success-message {
      margin-top: 20px;
      color: green;
      font-weight: bold;
      text-align: center;
    }

    .login-prompt {
      margin-top: 20px;
      font-size: 14px;
      text-align: center;
      color: #444;
    }

    .login-prompt a {
      color: #00C2CB;
      text-decoration: none;
      font-weight: 500;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from {
        transform: translateY(30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @media (max-width: 600px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }
    }