* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}


.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo img {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d4c185;
}



.cars-section {
  text-align: center;
  background-color: #f9f8f4;
  padding: 50px 20px;
}

.cars img {
  width: 100%;
  max-width: 1212px;
  height: auto;
  margin-bottom: 30px;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}


.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo img {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d4c185;
}


.cars-section {
  position: relative;
  background-color: #f9f8f4;
  height: 90vh; /* Adjustable */
  overflow: hidden;
  z-index: 1;
}

.cars {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.cars img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



.login-bubble {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  padding: 0 20px;
}


.login-box-bubble {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  border: 3px solid #000;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  gap: 30px;
  align-items: center;
}


.bubble-left {
  flex: 1;
  font-family: 'Arimo', sans-serif;
}

.login-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.login-subtext {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.login-label {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #000;
}

.bubble-left input[type="email"],
.bubble-left input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  font-family: 'Arimo', sans-serif;
  border: 2px solid #000;
  border-radius: 999px;
  margin-bottom: 20px;
  opacity: 0.6;
}


.options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  margin-bottom: 20px;
}

.forgot-link {
  text-decoration: none;
  color: #f5a623;
  font-size: 15px;
}

.login-btn {
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #333;
}

.register-text {
  font-size: 18px;
  margin-top: 20px;
}

.register-link {
  text-decoration: underline;
  color: #f5a623;
  font-size: 18px;
}


.bubble-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bubble-right img {
  width: 430px;
  height: 430px;
  object-fit: contain;
  border-radius: 50%;
}


@media (max-width: 992px) {
  .login-box-bubble {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }

  .bubble-right img {
    width: 300px;
    height: 300px;
  }

  .options-row {
    flex-direction: column;
    gap: 10px;
  }
}
