* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}
a {
  text-decoration: none;
}
section {
  width: 100%;
  height: 100vh;
  font-family: "Roboto";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(241, 245, 248);
}
.loginFullSide {
  margin-bottom:3em;
  width: 60%;
  height: 80%;
  display: flex;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.leftSide {
  width: 50%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #f9f9fb;
}
.upperSide {
  width: 100%;
  border-radius: 10px;
  background-color: white;
  height: 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.benim {
  color: purple;
  font-size: 20px;
  font-weight: 500;
}

#toogleButton {
    position: absolute;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #9243E1;
    top: 15px;
    right: 17%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#toogleButton::before {
  content: "\f070";
  font-size: 13px;
  color: white;
  font-family: fontAwesome;
}
.loginSide {
  display: flex;
  height: 95%;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loginInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loginInfo h5 {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
  text-align: center;
}
.loginInfo p {
  font-size: 15px;
  padding-bottom: 20px;
  text-align: center;
}
form .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
form .box input {
  width: 70%;
  height: 33px;
  border-radius: 4px;
  border: 1px solid #c2cdda;
  margin-top: 10px;
  padding-left: 10px;
  cursor: pointer;
}
form .box input:focus {
  outline: none;
  border: 1px solid #a64c9c;
}
.forgotpassword {
    text-align: center;
    font-weight: bold;
    width: 70%;
    padding-top: 10px;
    font-size: 15px;
    color: #9243E1;
    cursor: pointer;
}
#toogleButton.hide::before {
  content: "\f06e";
  font-size: 13px;
  color: white;
  font-family: fontAwesome;
}

.buttonSide {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px auto;
}
    .buttonSide button {
        cursor: pointer;
        padding: 10px;
        overflow: hidden;
        position: relative;
        background-color: #9243E1;
        font-weight: 300;
        font-size: 12px;
        width: 40%;
        color: white;
        border: none;
        border-radius: 5px;
    }
button .mySpan{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  /* for positioning */
  margin-left: -50px;
  opacity: 0;
  animation: rippleEffect 1s ease-in-out;
}
@keyframes rippleEffect {
  from {
      opacity: 1;
      transform: scale(0);
  }

  to {
      opacity: 0;
      transform: scale(10);
  }
}

.checkBox {
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    gap: 5px;
    align-items: center;
}
.dontHaveaccount {
    padding-top: 15px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
}
.remember {
  cursor: pointer;
  font-size:12px;
}
.dontHaveaccount span {
    color: #9243E1;
    font-weight: 900;
    font-size: 17px;
}
.rightSide {
    width: 50%;
    height: 100%;
    background-color:blue;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
   
}
.swiper {
  margin-left: auto;
  margin-right: auto;
}
.swiper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
    .swiper-slide .content .downContent p {
        font-size: 15px;
        line-height: 24px;
        padding: 0 40px;
        color: rgba(255, 255, 255,1 );
        text-align: center;
    }
.passwordBox {
  position: relative;
  width: 70%;
}
.swiper-slide .content .downContent h3 {
    font-size: 20px;
    color: white;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}
.swiper-slide .content .imgContainer {
  max-width: 300px;
  height: 60%;
}
.imgContainer img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.swiper-slide .content {
  display: flex;
  flex-direction: column;
  gap:20px;
  align-items: center;
  height: 70%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 20px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;

  font-weight: bold;
  color: white;
  line-height: 1;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 20px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
form {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .swiper-slide .content .imgContainer {
    max-width: 240px;
  }
}
@media screen and (max-width: 1000px) {
  form .box input {
    width: 100%;
  }
  .forgotpassword {
    width: 100%;
  }
  .buttonSide {
    width: 100%;
  }
  #toogleButton {
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .loginFullSide {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
  }
  .upperSide {
    height: 12%;
  }
  #toogleButton {
    right: 2%;
  }
  .leftSide {
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .rightSide {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .swiper-slide .content .imgContainer {
    max-width: 300px;
  }
}
