
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styling */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #6ec1e4;
  color: #fff;
  position: relative;
}

.site-header .logo IMg {
  width: 25%;
  padding: 0;
}

.navigation {
  display: flex;
  gap: 1rem;
}

.navigation ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navigation a {
  color: #fff;
  text-decoration: none;
}

.navigation a:hover {
  text-decoration: underline;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Main Content Styling */
main {
  flex: 1;
  padding: 1rem;
}

/* Footer Styling */
.site-footer {
  background-color: #f2f2f2;
  color: #333;
  text-align: center;
  padding: 1rem;
  bottom: 0;
  width: 100%;
  font-size: 11px;
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navigation {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #6ed1e5;
    width: 200px;
    padding: 1rem;
  }

  .site-header .logo IMg {
    width: 150px;
    padding: 0;
  }

  .navigation.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.container {
  display: flex;
  width: 70%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  margin: 0 auto;
  bottom: 10px;
}

.image-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 20px;
  box-sizing: border-box;
}

.logo {
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.main-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.login-side {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
}

.login-side h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.password-container {
  position: relative;
}

.password-container input,
.emailInput,
select {
  width: 100%;
  padding: 10px;
  padding-right: 40px;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

.register-link {
  text-align: center;
  margin-top: 10px;
  color: #555;
}

.register-link a {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.register-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 100%;
  }

  .image-side {
    order: 1;
    padding: 20px 0;
  }

  .login-side {
    order: 2;
    padding: 20px;
  }

  .logo {
    max-width: 50%;
  }
}

.form-stepINdiv {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  margin: 0 auto;
  width: 70%;
  bottom: 20px;
  border-radius: 5px;
}

.stepINdivdiv {
  flex: 2;
  max-width: 60%;
}

.membership-options {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .form-stepINdiv {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

  .stepINdivdiv {
    max-width: 100%;
    flex: none;
    text-align: center;
    overflow: auto;
    scrollbar-width: thin;
  }

  .membership-options {
    width: 100%;
    flex: none;
    align-items: center;
  }

  .membership-options button {
    width: 90%;
    max-width: 300px;
  }
}

