* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f3f4f6;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* gap: 20px; */
}


.header {
  height: 90px;
  background-color: White;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;

}

.loginlogo {
  margin-left: 20px;
}

.headerHeading {
  color: #1d3c72;
  margin-left: 20px;
}
.headerBtn{
  background-color: #1d3c72 !important;
}

.togglePasswordLogin {
    position: absolute;
    padding: 8px;
    right: 1px;
    top: 2%;
    cursor: pointer;
    border-radius: 7px;
    width: 40px;
    height: 43px;
    user-select: auto;
}
.togglePasswordsignup {
    position: absolute;
    padding: 8px;
    right: 43px;
    top: 66.5%;
    cursor: pointer;
    border-radius: 7px;
    width: 40px;
    height: 53px;
    user-select: auto;
}
/* Footer General Styling */
footer {
    background-color: #1d3c72;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    width: 100%;
    height: 200px;
}

.about-footer h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcd39;
  /* Gold accent for heading */
}

.about-footer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5b4a4a;
}

/* Neon effect for social media icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}



.footer .social-icons {
  margin: 20px 0;
}

.footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 24px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  color: #32CD32;
  /* Lime green color */
  border-color: #32CD32;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.loginContainer {
  display: flex;
  width: 70%;
  height: auto;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin: 20px 0px;
}

.left {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  overflow: hidden;
}

/* Decorative Circles */
.circle {
  position: absolute;
  border-radius: 50%;
}
#fitnessCarousel .carousel-inner {
  height: 700px;  /* fixed height */
  overflow: hidden;
}

#fitnessCarousel .carousel-item img {
  height: 700px;  /* fixed height */
  width: 100%;
  object-fit: cover;
}

.planHeading {
    margin-bottom: 20px;
    border: solid 1px white;
    background-color: darkblue;
    padding: 17px;
    border-radius: 10px;
}

.contact-card {
  background-color: #d0d2d4;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  height: 140px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-card i {
  width: 40px;
}


.circle1 {
  width: 450px;
  height: 450px;
  background-color: #2161cf;
  left: -136px;
  top: -42px;
}

.circle2 {
  width: 100px;
  height: 100px;
  background-color: #2161cf;
  left: 263px;
  top: 384px;
}

.right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1f2937;
}

.right p {
  margin-bottom: 30px;
  color: #6b7280;
}

.right label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #374151;
}

.right input {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  width: 100%;
}

.right input:focus {
  border-color: #1d3c72;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.right .forgot {
  text-align: center;
  font-size: 13px;
  margin-top: -15px;
  margin-bottom: 20px;
}

.right .forgot a {
  color: #1d3c72;
  text-decoration: none;
}

.right .forgot a:hover {
  text-decoration: underline;
}

.signInBtn {
  align-items: end;
}

.buttonCss {
  padding: 10px;
  background-color: #1d3c72;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.buttonCss:hover {
  background-color: #1d3c72;
}

.right .signup {
  text-align: center;
  font-size: 14px;
  margin-top: 25px;
  color: #6b7280;
}

.right .signup a {
  color: #1d3c72;
  text-decoration: none;
}

.right .signup a:hover {
  text-decoration: underline;
}

@media (max-width: 770px) {
  .loginContainer {
    flex-direction: column;
    height: 500px;
    width: 70%;
  }

  .left {
    display: none;
  }

  .right {
    padding: 20px;
  }

  .headerHeading {
    margin-left: 50px;
    color: #1d3c72;
    text-align: center !important;
  }
}

@media (max-width: 500px) {
  .loginContainer {
    flex-direction: column;
    height: auto;
    width: 90%;
  }

  .left {
    display: none;
  }

  .right {
    padding: 20px;
  }

  .headerHeading {
    display: none;
  }

  .footer {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: left;
    font-size: 14px;
  }
}

