
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Afacad", sans-serif;
    font-optical-sizing: auto;
  }

  body {
    background: url('../../img/login/Log\ In.png');
    display: flex;
    justify-content: center;
    align-items: center;
    height: 86.1vh;
}

  .left {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
  }


  .left p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  /* Swiper style */
  .swiper {
    width: 100%;
    max-width: 400px;
  }
  .swiper-pagination {
    margin-top: 15px;
    text-align: left !important;
    margin-left: 15px;
  }
  .swiper-pagination-bullet {
    background: #fff !important;
    margin-top: 20px;
    opacity: 0.4;
    width: 40px !important;
    border-radius: 10px !important;
  }
  .swiper-pagination-bullet-active {
    margin-top: 20px;
    background: #fff !important;
    opacity: 1;
    width: 40px !important;
    border-radius: 10px !important;
  }


  /* Right section */
  .right {
    flex: 1;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
   
  }


.fs-35{
    font-size: 46px;
}

.mt-8{
    margin-top: 8rem;
}

.fs-24{
    font-size: 28px;
}
.fs16{
    font-size: 16px;
}

.fs-medium{
    font-weight: 500;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 14px 40px 14px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #424242;
}

.form-input::placeholder{
  color: #424242;
  font-size: 16px;
}

.form-label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.2s ease all;
  color: #424242 !important;
  font-size: 16px;
}


.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -6px;
  left: 8px;
  font-size: 14px;
  background: #FFFFFF;
  padding: 0 4px;
  color: #BEBEBE !important;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.options label {
  display: flex;
  align-items: center;
  gap: 6px;
}



.btn {
  width: 100%;
  padding: 12px;
  background: #212121 !important;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background: #333;
}

.form-checkbox{
  font-size: 12px;
  color: #424242 !important;
}
.fs-12-424242{
    font-size: 12px;
    color: #424242 !important;
}

.custom-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #424242;
}

/* Hide default checkbox */
.custom-checkbox input {
  display: none;
}

/* Box */
.checkmark {
  width: 20px;
  height: 20px;
  background: #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  font-size: 20px;
  color: gray;
}

/* Tick appears only when checked */
.custom-checkbox input:checked + .checkmark::before {
  content: "✔";
  width: 47px;
  height: 26px;
  font-size: 16px;
  left: 3px;
  position: absolute;
}