a{
  transition: .3s all ease;
  color:#7754F6;
  font-weight: 500;
  text-decoration: none;
  &:hover{
    color: darken(#7754F6, 5%);
  }
}

.bg-img,
.form-wrap{
  height: 100vh;
  min-height: 500px;
}

.bg-img{
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  position: relative;
  height: 200px;
  min-height: 200px;
  z-index: 2;
  @media (min-width: 768px){
    position: fixed;
    width: 50%;
    height: 100vh;
  }

  @media (min-width: 992px){
    position: fixed;
    width: 50%;
    height: 100vh;
  }

  @media (min-width: 1200px){
    position: fixed;
    width: 60%;
    height: 100vh;
  }
}

.form-wrap{
  right: 0;
  position: relative;
  z-index: 1;
  padding: 5%;
  width: 100%;
  background: white;
  height: 100%;
  @media (min-width: 768px){
    position: absolute;
    width: 50%;
  }
  @media (min-width: 992px){
    position: absolute;
    width: 50%;
  }
  @media (min-width: 1200px){
    position: absolute;
    width: 40%;
  }

  .title{
    font-size: 25px;
    color: #000;
  }

  .form-floating{
    position: relative;
    margin-bottom: 15px;
    .form-control{
      height: 60px!important;
      border-radius: 10px!important;
      &:active, &:focus{
        outline: none;
        box-shadow: none;
        border-color: #7754F6;
      }
    }
  }

  .password-show-toggle{
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 9;
    span{
      font-size: 20px;
      &:before{
        font-family: 'unicons-line';
        content: "\ebf8";
      }
    }
    &.active{
      span{
        &:before{
          content:"\ebaf";
        }
      }
    }
  }

  .form-check{
    margin-bottom: 30px;
    .form-check-input{
      border-color: #d1d1d1!important;
      &:checked{
        background-color: #7754F6;
        border-color: #7754f6!important;
        outline: none;
        box-shadow: none;
      }
      &:focus, &:active{
        outline: none;
        box-shadow: none;
      }
    }
  }

  .btn-primary{
    border-radius: 10px;
    background-color: #7754F6;
    border-color: #7754F6;
    height: 60px;
    font-weight: 500;
    box-shadow: 0 15px 30px -7px rgba(#7754F6, .5);
    transition: .3s all ease;
    font-size: 18px;
    &:hover{
      background-color: darken(#7754F6, 5%);
      border-color: darken(#7754F6, 5%);
    }
  }

  .social-account-wrap{
    padding-top: 30px;
    padding-bottom: 50px;
    h4{
      text-align: center;
      font-size: 14px;
      font-weight: normal;
      position: relative;
      span{
        z-index: 1;
        display: inline-block;
        padding-left: 20px;
        padding-right: 20px;
        background: white;
      }
      &:before{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 1px;
        background-color: #d1d1d1;
        z-index: -1;
      }
    }
    .social-account{
      li{
        flex:0 0 calc(25% - 10px);

        a{
          display: inline-block;
          border: 1px solid #d1d1d1;
          padding: 10px;
          border-radius: 10%;
          &:hover{
            border-color: darken(#d1d1d1, 8%);
          }
        }
      }
    }
  }
}