@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Host Grotesk", sans-serif;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f5f7;
  background-image: url(/images/Layer\ 1.webp);
}



.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 70%;
  min-height: 80vh;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 30px;
}

.login-section {
  width: 100%;
  padding: 4rem 4.5rem;
  background: #fff;
  padding-left: 3rem;
}
.login-header img {
  width: 290px;
}

.login-header h1 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-block: 1rem;
  color: #092040;
}



.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
.options input {
  width: 17px;
  height: 17px;
  appearance: none;
  background: #0658d4;
  border: 10x solid black;
  border-radius: 5px;
  margin-right: 5px;
  border-radius: 4px;
}

.options input:checked {
  background-image: url(/images/download.svg);
  cursor: pointer;
}
.options label {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.options a {
  color: #0658d4;
  text-decoration: none;
}


.login-btn {
  width: 100%;
  background: #0658d4;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin-block: 2rem;
}

.create-account {
  text-align: center;
  color: #7f8c8d;
}

.create-account a {
  color: #0658d4;
  text-decoration: none;
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-icon {
  position: relative;
  width: 100%;
}

.input-icon input {
  width: 100%;
  padding: 7px 40px; 
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fafbff;
  transition: 0.3s;
  border: none;
  box-shadow: 0 0 1px 1px #c2dfff; 

}

.input-icon select {
  width: 100%;
  padding: 7.5px 40px;
  border-radius: 6px;
  font-size: 16px;
  color: #6c757d;
  background: #fafbff;
  transition: 0.3s;
  appearance: none;
  box-shadow: 0 0 1px 1px #c2dfff; 
  border: none;
}

.input-icon input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.input-icon select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.input-icon input::placeholder {
  color: #6c757d;
}

.input-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}


.eye_icon{
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
}


.input-icon:nth-child(1)::before {
  background-image: url("/images/email.svg"); /* Replace with your email icon URL */
}

.input-icon:nth-child(2)::before {
  background-image: url("/images/padlock.svg"); /* Replace with your password icon URL */
}


.input-icon:nth-child(3)::before {
  background-image: url("/images/plus.svg"); /* Replace with your password icon URL */
}


.Log-out-div button{
  text-align: left;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background: #fafbff;
  transition: 0.3s;
  margin-top: 16px;
  color: #ff5757;
  cursor: pointer;
  font-weight: 500;
  border: none;
  box-shadow: 0 0 1px 1px #ff5757;
}

.Log-out-div button span{
  color: #ff5757;
  margin-right: 8px;
  margin-left: 1px;
}

.Log-out-div button:hover{
  color: #fafbff;
  transition: 0.3s;
  background: #ff5757;
  span{
    color: #fff;
  }
}


.info-section {
  width: 100%;
  min-height: 80vh;
  background: #0658d4;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.info-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  flex-direction: column;

  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide.active {
  display: flex;
}

.slider-controls {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  box-sizing: border-box;
}

.slider-controls span {
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.slide {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide.active {
  display: flex;
  animation: fade-in 0.5s ease-in-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide img {
  width: 371px;
  height: 264px;
  margin-bottom: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.dot.active {
  opacity: 1;
}

@media (max-width: 991px) {
  .container {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
    margin-bottom: 0;
  }

  .login-section {
    padding: 5%;
  }
  .slide img{
    padding-inline: 5%;
  }

}
