body {
  box-sizing: border-box;
  direction: rtl;
}
ul {
  list-style: none;
}
.h-screen {
  height: 100vh;
}
.login {
  background-image: url("../imgs/bgLog.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
}
.logBox {
  width: 100%;
}
.logimage img {
  width: 130px;
}
.fadean {
  animation: fadeAn 0.4s linear;
}
@keyframes fadeAn {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(5px);
  }
}
.contact-form {
  height: 100%;
  padding: 30px 20px;
  width: 510px;
  border-right: 2px solid #f8f8fb;
}
.contact-form .logTitle {
  color: #0193dc;
}
.input-group {
  position: relative;
  margin-bottom: 15px;
}
.form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #0193dc;
}
.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  appearance: none;
}
.input-group input:focus {
  border-color: #1e90ff;
  outline: none;
  box-shadow: 0 0 5px rgba(30, 144, 255, 0.3);
}
.input-group .icon {
  bottom: 10px;
  right: 10px;
  font-size: 20px;
  color: #0193dc;
}
.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #1e90ff;
  border: 2px solid #0193dc;
  border-radius: 4px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}
.contact-form button:hover {
  background-color: white;
  color: #0193dc;
}
.icons ul li {
  width: 45px;
  height: 45px;
  border: 1px solid #0193dc;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icons ul li span svg {
  color: #0193dc !important;
  font-size: 23px;
}
@media (max-width: 767px) {
  .logBox {
    display: block !important;
  }
  .logPhoto img {
    display: none;
  }
  .contact-form {
    width: 100%;
    border: none;
  }
}
.forgetbtn a {
  text-decoration: none;
  font-weight: 600;
  color: #0193dc;
}
