@import url('https://fonts.googleapis.com/css2?family=Fasthand&family=Hanuman:wght@100;300;400;700;900&family=Noto+Serif+Khmer:wght@800&family=Poppins:wght@400;600;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  --grey: rgba(128, 128, 128, 0.442);
  --border-color-grey: rgba(128, 128, 128, 0.442);
  --bg-card: #d4d4d440;
  --bg-sale: #3CB043;
  --bg-hover-card: #bfc1be;
  --bg-header: #F6F9F5;
  --overlay: rgba(0, 0, 0, 0.294);
  --navbar-tab: #FAFBFA;
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family:"Poppins", sans-serif  ,  "Fasthand", cursive;
}

.container {
  width: 1200px;
  margin: 0px auto;
}
.text-capitalize {
  text-transform: capitalize;
}
.fs-1 {
  font-size: 60px;
}
.fs-3 {
  font-size: 30px;
}
.fs-2 {
  font-size: 40px;
}
.fs-5 {
  font-size: 20px;
}
.fs-6 {
  font-size: 16px;
}
.text-muted {
  color: var(--border-color-grey);
}
.fw-bold {
  font-weight : bold;
}
.text-green {
  color: var(--bg-sale);
}
.text-grey {
  color: grey;
}
.bg-grey {
    background-color : var(--bg-card);
}
.bg-black {
    background-color: black;
}
.bg-green {
    background-color: var(--bg-sale);
}
.text-white {
  color : white;
}
.text-black {
  color : black;
}


.pe-2 {
  padding-right: 20px;
}
.pe-3 {
  padding-right: 30px;
}
.pe-4 {
  padding-right: 40px;
}
.pe-5 {
  padding-right: 50px;
}
.pe-1 {
  padding-right: 10px;
}
.ps-1 {
  padding-left: 10px;
}
.ps-4 {
  padding-left: 40px;
}
.ps-3 {
  padding-left: 30px;
}
.ps-4 {
  padding-left: 40px;
}
.ps-2 {
  padding-left: 10px;
}
.px-1 {
  padding: 0px 10px;
}
.p-3 {
    padding : 30px;
}
.p-2{
    padding : 20px;
}
.p-1{
  padding : 10px;
}
.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}
.pt-3 {
  padding-top: 20px;
}
.pb-3 {
  padding-bottom: 30px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-1 {
  padding-bottom: 10px;
}
.border-bottom{
  border-bottom : 1px solid var(--border-color-grey);
}
.pt-3 {
  padding-top: 30px;
}
.pt-4 {
  padding-top: 40px;
}
.pt-5 {
  padding-top: 50px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-2 {
  margin-top: 20px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.mb-5 {
  margin-bottom: 50px;
}
.mb-2 {
  margin-bottom: 20px;
}
.px-2 {
  padding: 0px 20px;
}
.px-3 {
    padding: 0px 20px;
  }
.me-1 {
  margin-right: 10px;
}
.me-2 {
  margin-right: 20px;
}
.me-3 {
  margin-right: 30px;
}
.ms-3 {
  margin-left : 30px;
}
.py-2 {
  padding: 20px 0px;
}
.py-3 {
  padding : 30px 0px;
}
.text-gold {
  color: gold;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col-12 {
  width: 100%;
}
.col-10 {
  width : 80%;
}
.col-8 {
  width: 66.66%;
}
.col-3 {
  width: 25%;
}
.col-9 {
  width: 75%;
}
.col-4 {
  width: 33.33%;
}
.col-6 {
  width: 50%;
}

.col-2 {
  width: 16.66%;
}

.text-align-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.flex-direction-column {
  flex-direction: column;
}
.g-2 {
  gap: 20px;
}
 .align-item-start {
  align-items: start;
}
.align-item-center {
  align-items: center;
}
.align-item-end {
  align-items: end;
}
.text-decoration-none {
  text-decoration: none;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}

.register-btn .signin-click{
  background-color: rgb(0, 0, 0);
  width : 200px;
  height : 40px;
  font-size : 16px;
  border: none;
  margin: 0px auto;
  /* cursor: pointer; */
  color : white;
  
}
.popup-signup-form {
  padding: 35px 0;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}


.popup-signup-form form {
  background: white;
  border: 2px solid white;
  width : 50%;
  padding : 30px;
  height: auto;
  position: relative;
  margin: 0px auto;
}

.popup-signup-form  form  .btn-close-signup {
  width : 35px;
  height : 35px;
  border-radius: 50%;
  border: 2px solid white;
  position: absolute;
  top : -15px ;
  right : -15px;
  color: var(--bg-sale);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-signup-form  form  .btn-close-signup  .fa-xmark {
display: block;
color: var(--bg-sale);
padding: 5px 7px;
font-size: 15px;
border-radius: 50%;
border: 2px solid var(--bg-sale);
}

.popup-signup-form form .btn-group {
  display: flex;
}

.popup-signup-form form .btn-group .btn-login {
    /* background-color: var(--bg-card); */
    border: none;
    width : 50%;
    padding : 20px 0px; 
    font-size: 16px;
  }
  .popup-signup-form form .btn-group .btn-signup{
    /* background-color: black; */
    border: none;
    width : 50%;
    padding : 20px 0px; 
    font-size: 16px;
  
  }
.popup-signup-form form .input-group{
  position: relative;
  left : 0px 
}
.popup-signup-form form .input-group  span {
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding : 10px;
  width : 50px;
  height : 50px;
  position: absolute;
}
.popup-signup-form form .input-group .form-control {
  height : 50px;
  padding : 10px;
  font-size : 14px;
  width: 100%;
  padding-left    : 60px;
  outline: none;
  border: 1px solid var(--border-color-grey);
}
.popup-signup-form form  .btn-signup-link {
  padding : 20px;
  color : rgb(255, 255, 255);
  width: 100%;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-check {
  padding: 0px 10px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-check > .form-check-input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: black;
}


 .form-label {
  color : black;
  font-size: 14px;
  margin-left: 6px;
  text-transform: capitalize;
}