* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.main {
  display: flex;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* border-radius: 15px; */
  overflow: hidden;
}

.left-side {
  width: 50%;
  background-color: #fafafa;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.logo {
  width: 100px;
  margin-bottom: 30px;
}

.left-side h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.left-side p {
  font-size: 16px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  text-decoration: none;
}
.social-links .facebook {
  color: blue;
}
.social-links .insta {
  color: #c13584;
}

.right-side {
  width: 50%;
  background-color: #a5c9ff;

  background-image: linear-gradient(to bottom right, #4abdd5, #eee);
  /* background-color: #A5C9FF; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-2 {
  display: none;
}

.login-box {
  width: 47%;
  max-width: 400px;
  background-color: white;
  padding: 50px 30px 50px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.login-box img {
  display: block;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 80px;
  height: auto;
}
.login-box .title-1 {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 20px;
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
}
input::placeholder {
  opacity: 0;
}

.login-btn {
  width: 100%;
  padding: 15px;
  background-color: #007bff;

  color: white;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
}
.password-icon {
  position: absolute;
  top: calc(50% - 10px);
  right: 5px;
  cursor: pointer;
  font-size: 1rem;
  color: #6c757d;
  margin-right: 20px;

  display: flex;
  height: 20px;
  width: 20px;
}

@media (max-width: 1100px) {
  .login-box {
    width: 80%;
  }
}

@media (max-width: 806px) {
  .main {
    /* flex-direction: column; */
    overflow: visible;
  }
  .left-side {
    display: none;
  }
  .right-side {
    width: 100%;
    padding: 20px;
  }
  .title-1 {
    display: none;
  }
  .login-box {
    width: 80%;
  }
  .title-2 {
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bolder;
  }
  .input-group input {
    padding: 10px;
  }
  .login-btn {
    padding: 10px;
  }
  label[for="password"],
  label[for="email"] {
    display: none;
  }
  input::placeholder {
    opacity: 1;
  }
  label[for="flexSwitchCheckDefault"] {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .input-group input {
    padding: 5px;
  }
  .login-btn {
    padding: 5px;
  }
  .title-2 {
    font-size: 18px;
    font-weight: bolder;
  }
  input::placeholder {
    font-size: 12px;
  }
}
