@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "inter";
  text-decoration: none;
}
.grandcont {
  width: 80%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 40%;
  border-right: 1px solid #ccc;
  padding: 50px;
}

.coteimg {
  background-image: url("../images/bkll.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.lim {
  width: 90%;
}
.lim img {
  width: 100%;
}

.signup-container {
  width: 100%;
}
.leconte {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leform {
  width: 450px;
  margin: auto;
  padding-right: 60px;
  border-radius: 10px;
  font-family: "Roboto", sans-serif;
}
.leform .form-group {
  margin-top: 15px;
  margin-bottom: 25px;
}
.leform h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.leform .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.leform .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.leform .form-group input:focus {
  border-color: blueviolet;
  outline: none;
  box-shadow: 0 0 5px rgba(42, 98, 255, 0.5);
}

.leform .btn-submit {
  width: 100%;
  padding: 10px;
  background: blueviolet;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.leform .btn-submit:hover {
  background: #1e4db7;
}

.err {
  background-color: #ffe6e6;
  color: #cc0000;
  border: 1px solid #cc0000;
  padding: 3px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.login-link {
  text-align: center;
  margin-top: 20px;
}
.mlo {
  width: 90%;
  margin: auto;
}
.mlo img {
  width: 100%;
}
@media (max-width: 790px) {
  .heig {
    display: none;
  }
  .grandcont {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .leform {
    width: 100%;
    padding: 13px;
  }
  .leform h3 {
    font-size: 1.4rem;
  }
  .leform .form-group label {
    font-size: 14px;
  }

  .leform .form-group input {
    font-size: 1rem;
    padding: 10px;
  }

  .leform .btn-submit {
    font-size: 14px;
    padding: 8px;
  }
  .leconte {
    margin-top: 4.4rem;
    height: auto;
  }
  .mlo {
    display: block;
    width: 80%;
    margin: auto;
  }
  .mlo img {
    width: 100%;
  }
}
