@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root{
    --main-bg: #F4F4F2;
    --text-color: #4B4213;
    --btn-bg: #FFDF37;
    --btn-hover-bg: #f4cd09;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v170/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
#auth {
    height: 100vh;
    /* background: var(--main-bg); */
    display: flex;
}

.text-color{
    color: var(--text-color);
}

.fs-60{
    font-size: 60px;
}

.card-auth{
    background: #F7F7F6;
    max-width: 500px;
    width: 100%;
    border-radius: 40px;
    padding: 3rem;
}

.auth-heading{
    font-size:60px;
    color: var(--text-color);
    font-weight: 300;
    padding-top:70px;
}

.rounded-5px{
    border-radius: 5px;
}

.fs-7{
    font-size: 14px;
}

.fs-8{
    font-size: 12px;
}
.small-logo img{
  
  width: 50%;
  padding-right: 10px;
}

.auth-btn{
    background: #895D07;
    color: #fff!important;
    width: 100%;
    padding: 6px 18px;
}

.auth-btn:hover{
    background: var(--btn-hover-bg);
    transition: 0.5s ease;
}

.divider {
    display: block;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0
}

.divider .divider-text {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background-color: #fff
}

.divider .divider-text:before,.divider .divider-text:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    border-top: 1px solid #DFE3E7
}

.divider .divider-text:before {
    right: 100%
}

.divider .divider-text:after {
    left: 100%
}

.divider.divider-left .divider-text {
    float: left
}

.divider.divider-left-center .divider-text {
    left: -25%
}

.divider.divider-right-center .divider-text {
    left: 25%
}

.divider.divider-right .divider-text {
    float: right
}

/* .container-width{
    position: absolute;
    right: -250px;
    bottom: -450px;
    z-index: 9999;
} */

.container-width{
    position: absolute;
    left: calc(50% - 340px);
    top:calc(50% - 340px);
    z-index: 9999;
} 


.main-container {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
     height: 560px;
    /* overflow: hidden; */
  }
  .main {
    margin: 0px auto;
    width: 680px;
    height: 680px;
    position: relative;
    right: 0;
    bottom: -480px;
  }
  .big-circle {
    height: 100%;
    width: 100%;
    position: relative;
    border: 1px solid #adaba1;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    animation: Rotate 20s linear infinite;
    -webkit-animation: Rotate 20s linear infinite;
  }
  .icon-block {
    width: 70px;
    height: 70px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .icon-block img {
    margin: 0px auto;
    width: 100px;
    animation: Rotate-reverse 20s linear infinite;
    -webkit-animation: Rotate-reverse 20s linear infinite;
  }
  .icon-block:first-child {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .icon-block:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
  }
  .icon-block:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
  }
  .icon-block:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  /* circle content */
  .circle {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    width: 100%;
    height: 100%;
    /* border: 1px solid #BF80FE; */
    border-radius: 50%;
  }
  .circle .icon-block img {
    animation: img-rotate 20s linear infinite;
    -webkit-animation: img-rotate 20s linear infinite;
  }
  /* center logo */
  .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 70%;
  }
  .center-logo img {
    width: 100%;
    -webkit-animation: Rotate-reverse 20s linear infinite;
    animation: Rotate-reverse 20s linear infinite;
  }

  .bor{
      border: 1px solid red;
  }

  /* New login page css */
  .section-8{
    position: relative;
    width: 100%;
  }
  .section-8 .half-circle{
      position: absolute;
      bottom: 0px;
      
  }
  .section-8 .half-circle img{
    width: 100px;
  }
  
  .section-8 .right-section{
      z-index: -1;
      position: absolute;
      right: 0px;
      background-image: url('../img/login-bg.png');
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      width: 58%;
      height: 100vh;
  }
  
  .section-8 .card{
    border: 0px;
    width: 100%;
    padding: 50px 100px 0px 100px;
  }
  .form-control {
    font-size: 14px;
    border: 1px solid #D0D0D0;
    padding: 8px 15px;
    border-radius: 8px;
  }
  .form-control:focus{
      box-shadow: unset;
      border: 1px solid #D0D0D0;
  }
  .form-control:active{
    box-shadow: unset;
    border: 1px solid #D0D0D0;
  }

  .section-8 .card .section-title  .title h2 span{
      font-size: 36px;
  }
  .section-8 .card .section-title{
    padding-bottom: 40px;
  }
  .section-8 .card .section-title  .title h2{
    font-size: 36px;
  }

  .section-8 .card h3{
    font-size: 24px;
  }
  .section-8 .card p{
    font-size: 16px;
  }

  .section-8 .card .form-section .forgot a{
    text-decoration: none;
    color: #424242;
  }
  .section-8 .card .register span{
    color: #4B4213;
  }
  .section-8 .card .register span a{
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    
  }
  .section-8 .card .or{
    position: relative;
    font-size: 16px;
    font-weight: bold;
  }
  .section-8 .card .or:after{
    position: absolute;
    height:1px;
    width: 43%;
    content: '';
    top:13px;
    border: 1px solid #D0D0D0;
    right: 0px;
  }
  .btn{
    border-radius: 8px;
  }
  .section-8 .btn-secondary{
      border: 1px solid #D0D0D0;
      background: transparent;
      color: #4B4213;
      width: 100%;
      
  }
  .section-8 .btn-secondary:hover{
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
  }
  .section-8 .btn{
      padding: 8px 0px;
  }
  .section-8 .card .or:before{
    position: absolute;
    height:1px;
    width: 43%;
    top:13px;
    content: '';
    left:0px;
    border: 1px solid #D0D0D0;
  }

  .section-8 .main-title h2{
    color: #4B4213;
    font-size: 64px;
    font-weight: 600;
    padding: 50px 50px 20px 50px;
    margin: 0px;
    line-height: 1.1;
  }

  .section-8 .main-title p{
    font-size: 20px;
    color: #6D663F;
  }

  .section-8 .toggle_pwd{
      position: relative;
  }
  .toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
    color: #7C7C7C;
}

  .section-8 .main-item{
    height: 100vh;
  }
  /* keyframe animation */

  .section-12{
    background-image: url('../img/new-login-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
  }
  .section-12 .card{
    background-color: #fff;
    border: 0px;
    /* box-shadow:  0.2rem 1rem rgb(0 0 0 / 10%) !important; */
    padding: 40px;
    border-radius: 20px;
  }


.section-12 .card .section-title  .title h2 span{
    font-size: 36px;
}
.section-12 .card .section-title{
  padding-bottom: 20px;
}
.section-12 .card .section-title  .title h2{
  font-size: 36px;
}

.section-12 .card h3{
  font-size: 24px;
}
.section-12 .card p{
  font-size: 16px;
}

.section-12 .card .form-section .forgot a{
  text-decoration: none;
  color: #424242;
}
.section-12 .card .register span{
  color: #4B4213;
}
.section-12 .card .register span a{
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  
}
.section-12 .card .or{
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.section-12 .card .or:after{
  position: absolute;
  height:1px;
  width: 43%;
  content: '';
  top:13px;
  border: 1px solid #D0D0D0;
  right: 0px;
}
.btn{
  border-radius: 8px;
}
.section-12 .btn-secondary{
    border: 1px solid #D0D0D0;
    background: transparent;
    color: #4B4213;
    width: 100%;
    
}
.section-12 .btn-secondary:hover{
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.section-12 .btn{
    padding: 8px 0px;
}
.section-12 .card .or:before{
  position: absolute;
  height:1px;
  width: 43%;
  top:13px;
  content: '';
  left:0px;
  border: 1px solid #D0D0D0;
}

.section-12 .main-title h2{
  color: #4B4213;
  font-size: 64px;
  font-weight: 600;
  padding: 50px 50px 20px 50px;
  margin: 0px;
  line-height: 1.1;
}

.section-12 .main-title p{
  font-size: 20px;
  color: #6D663F;
}

.section-12 .toggle_pwd{
    position: relative;
}
.toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -25px;
  color: #7C7C7C;
}

.section-12 .main-item{
  height: 100vh;
}

.section-12 .right-box .image .outer-img{
  position: relative;
  display: flex;
  justify-content: center;
}
.section-12 .right-box .title{
  position: absolute;
  top: 106px;
  width: 100%;
}
.section-12 .right-box .title h4{
   text-align: center;
    font-size: 72px;
    color: #FFF;
    font-weight: 500;
    line-height: 1;
    padding: 0px 2px;
}


.section-12 .right-box .title h4 span{
  font-size: 72px;
  font-weight: unset;
  color: #FFDF37;
  font-style: italic;
}

.section-12 .right-box .title p{
  color: #fff;
  font-size: 24px;
  padding-top: 10px;
  margin-bottom: 0px;
}








  @keyframes Rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  @-webkit-keyframes Rotate {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  @keyframes Rotate-reverse {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0deg);
    }
  }

  @-webkit-keyframes Rotate-reverse {
    from {
      -webkit-transform: rotate(360deg);
    }
    to {
      -webkit-transform: rotate(0deg);
    }
  }

  @keyframes circle-rotate {
    from {
      transform: translate(-50%, -50%) rotate(45deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(405deg);
    }
  }

  @-webkit-keyframes circle-rotate {
    from {
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
    }
    to {
      -webkit-transform: translate(-50%, -50%) rotate(405deg);
    }
  }

  @keyframes img-rotate {
    from {
      transform: rotate(-45deg);
    }
    to {
      transform: rotate(-405deg);
    }
  }

  @-webkit-keyframes img-rotate {
    from {
      -webkit-transform: rotate(-45deg);
    }
    to {
      -webkit-transform: rotate(-405deg);
    }
  }

  @media (max-width:800px) {
    .card-auth{
        padding:2rem
    }
    .auth-heading{
        font-size:4rem
    }
  }
  @media (max-width:1200px) {
    .card-auth{
        padding:1rem

    }
    .auth-heading{
        font-size:4rem
    }
    .section-register{
      height: 100%;
      padding: 20px 0px;
    }
    .section-register-auth{
      height: 100%!important;
      
    }
  }

  @media (max-width:576px) {
      .card-auth{
          padding:1rem
      }
  }

  @media (min-width: 1200px){
    .container {
        max-width: 1440px;
  }
}
@media (min-width: 769px) and (max-width:1199px){
  .section-8 .right-section{
    display: none;
  }
  .section-8 .half-circle{
      display: none;
  }
  .section-8 .card{
    padding: 100px;
    
  }
  .section-12 .right-box{
    display: none;
  }
}
@media (min-width: 577px) and (max-width:992px){
  .section-8 .card{
    padding: 100px;
    margin: 0px 100px;
    
  }
  .section-8 .right-section{
    display: none;
  }
  .section-8 .half-circle{
      display: none;
  }
  .section-12 .right-box{
    display: none;
  }
}
@media (min-width: 350px) and (max-width:576px){
    .section-12 .right-box{
      display: none;
    }
    .section-12 .card{
      padding: 20px;
      margin: 0px;
    }
    .section-8 .right-section{
      display: none;
    }
    .section-8 .half-circle{
        display: none;
    }
    .section-8 .card{
      padding: 15px;
      box-shadow: 0 0.2rem 1rem rgb(0 0 0 / 5%) !important;
      border-radius: 10px;
  }
}
