body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Page layout */
.main-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Grid layout similar to MUI Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Always 2 columns on large screens */
  gap: 40px;
  width: 100%;
}

/* BELOW 901px → Switch to 1 column */
@media screen and (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.gradient-box {
  padding: 20px;
  background: linear-gradient(135deg, #F3F4F6 0%, #E2E8F0 50%, #6e89af 100%);
}

.main-heading {
  font-size: 32px;
  font-weight: bold;
}

.heading {
  font-size: 30px;
  font-weight: bold;
}

.blue {
  color: #2a4eac;
}

/* Gradient text animation */
.gradient-text {
  background: linear-gradient(90deg, #06b6d4, #6366f1, #9333ea);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Buttons */
.explore-btn {
  background: linear-gradient(270deg, #d7f6d0, #b0c9ff, #d7f6d0);
  background-size: 200% 200%;
  width: 150px;
  height: 50px;
  border-radius: 50px;
  font-size: 22px;
  border: none;
  cursor: pointer;
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.explore-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(67, 82, 164, 0.4);
}

/* images */
.image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
}

/* Animations */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-fade {
  animation: slideFadeIn 2.5s ease-in-out infinite;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0px, 0px);
  }

  50% {
    transform: translate(5px, -5px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.float {
  animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floatY {
  animation: floatY 3s ease-in-out infinite;
}

/* Points section */
.point-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.point-icon {
  width: 100px;
  height: 100px;
}

.point-title {
  font-size: 22px;
  margin: 0;
}

.footer {
  margin-top: 40px;
  padding: 20px;
  background: #f5f5f5;
  text-align: center;
}


/* ---------- GRID LAYOUT ---------- */
.container {
  display: flex;
  height: 100vh;
}

.left-panel {
  width: 62.5%;
  /* 7.5 out of 12 */
  position: relative;
}

.left-panel .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.right-panel {
  width: 37.5%;
  /* 4.5 out of 12 */
  overflow-y: scroll;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- LOGO ---------- */
.logo {
  width: 300px;
  height: 100px;
  margin-left: 20px;
  cursor: pointer;
}

/* ---------- MAIN BOX ---------- */
.mainbox-middle {
  width: 70%;
  margin-top: 50px;
}

@media (max-width: 879px) {
  .container {
    flex-direction: column;
  }

  .left-panel {
    display: none;
  }

  .right-panel,
  .mainbox-middle {
    width: 100%;
  }
}

/* ---------- DROPDOWNS ---------- */
.select-box {
  width: 150px;
  padding: 10px;
  border: 1px solid #14B8A6;
  border-radius: 10px;
  font-size: 16px;
}

.contact-type-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.role-dropdown {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

/* ---------- INPUT GROUP ---------- */
.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.textFieldData {
  margin-top: 10px;
  width: 100%;
  border: 1.2px solid #14B8A6;
  border-radius: 9px;
  height: 35px;
  padding: 10px;
}

/* ---------- PASSWORD FIELD ---------- */
.password-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.toggle-eye {
  position: absolute;
  right: 12px;
  cursor: pointer;
}

/* ---------- FORGOT PASSWORD ---------- */
.forgot-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.forgot {
  color: #14B8A6;
  font-size: 17px;
  cursor: pointer;
}

/* ---------- SIGN-IN BUTTON ---------- */
.signin-btn {
  width: 100%;
  height: 50px;
  border: 1px solid #14B8A6;
  border-radius: 10px;
  background: white;
  color: #14B8A6;
  font-size: 20px;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.3s;
}

.signin-btn:hover {
  background: #14B8A6;
  color: white;
}

/* ---------- SIGN UP LINK ---------- */
.signup-text {
  color: #8d8d8d;
}

.signup-link {
  color: #14B8A6;
  cursor: pointer;
}

/* ---------- OTHER LOGIN BOX ---------- */
.other-login-box {
  display: flex;
  flex-direction: column;
  width: 400px;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 879px) {
  .other-login-box {
    width: 100%;
  }
}

.login-option {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  height: "35px",
}

.login-option:hover {
  background: #f5f5f5;
}