
:root {
  --poppins: 'Poppins', sans-serif;
  --light: #F9F9F9;
  --green: #0FC053;
  --greenlight: #00DC55;
  --darkgreen: #021915;
  --light-blue: #E6E9ED;
  --grey: #F1F2F7;
  --white: #fff;
  --dark-grey: #AAAAAA;
  --dark: #00150e;
  --red: #DB504A;
  --yellow: #FFCE26;
  --light-yellow: #FFF2C6;
  --orange: #FD7238;
  --light-orange: #FFE0D3;
  --black: #0E1116;
  }
  
  
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  }
  html {
  overflow-x: hidden;
  }
  a {
  text-decoration: none;
  font-weight: 600;
  }
  
  a.text-muted:hover {
      text-decoration: none;
      font-weight: 600;
      color: #0fc053 !important;
  }
  
  a.text-success:hover {
      text-decoration: none;
      font-weight: 600;
      color: #0E1116 !important;
  }
  
  
  li {
  list-style: none;
  }
  
  .color-6{color: var(--black);}
  
  .fs-18{font-size: 18px;}
  .fs-22{font-size: 22px;}
  .fs-24{font-size: 24px;}
  .fs-28{font-size: 28px;}
  .fs-30{font-size: 30px;}
  .fs-34{font-size: 34px;}
  
  
  .fw-500{font-weight: 600;}
  .text-muted {
  color: #0E1116 !important;
  }
  
  
  
  .login-wrapper {
  min-height: 100vh;
  }
  
  .left-panel {
  background-color: var(--darkgreen);
  color: var(--white);
  padding: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  }
  
  .walink-logo {
  position: absolute;
  top: 40px;
  left: 12%;
  font-size: 28px;
  font-weight: bold;
  }
  
  .walink-logo span.dot {
  color: var(--green);
  }
  .leftbg {
  position: absolute;
  }
  
  .circle-container {
  position: relative;
  width: 460px;
  height: 460px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  }
  
  .circle-container::after {
  content: '';
  position: absolute;
  bottom: 23px;
  left: 85%;
  transform: translateX(-12%) rotate(-55deg);
  width: 112px;
  height: 98px;
  background-color: var(--green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  }
  
  .circle-container img {
  width: 75%;
  border-radius: 50%;
  }
  
  .login-section {
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  }
  
  .language-select {
  position: absolute;
  top: 46px;
  right: 12%;
  width: 158px;
  }
  
  .login-box {
  width: 100%;
  max-width: 650px;
  border: 1px solid #E6E9ED;
  border-radius: 16px;
  padding: 50px;
  }
  
  .form-group {
  position: relative;
  margin-bottom: 2rem;
  }
  
  .form-control {
  border: none;
  border-bottom: 2px solid #0E1116;
  border-radius: 0;
  background: transparent;
  padding: 10px 0 5px 0;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.3s ease;
  }
  
  .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--green);
  }
  
  .form-label {
  position: absolute;
  top: 6px;
  left: 0;
  color: #50504C;
  font-size: 18px;
  transition: 0.3s ease all;
  pointer-events: none;
  }
  
  .form-control:focus ~ .form-label,
  .form-control:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  font-size: 13px;
  color: var(--greenlight);
  }
  
  .btn-login {
  background-color: var(--greenlight);
  transition: background-color 0.3s ease;
  border-radius: 6px;
  padding: 15px 5px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 10%;
  }
  
  .btn-login:hover {
  background-color: var(--green);
  }
  form .form-check-input {
  width: 24px;
  height: 24px;
  margin-top: -0em;
  border: 2px solid #E6E9ED;
  border-radius: 4px !important;
  }
  
  .otp-input {
  width: 46px;
  height: 46px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #E6E9ED;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
  }
  
  .otp-input:focus {
  border-color: #00c853;
  box-shadow: none;
  }
  
  .otp-container {
  display: flex;
  /*! justify-content: center; */
  gap: 20px;
  margin-bottom: 10px;
  }
  
  .underline {
  border-top: 2px solid #0E1116;
  width: 100%;
  max-width: 100%;
  /*! margin: 0 auto; */
  }
  .languagebtn {
  border: 1px solid #E6E9ED;
  border-radius: 4px;
  padding: 12px 19px;
  font-size: 16px;
  }
  .language-select .dropdown-menu.show {
  display: block;
  width: 148px !important;
  border: 1px solid #e6e9ed;
  transform: translate(0px, 45px) !important;
  }
  
  
  @media (max-width: 767px) {
  .walink-logo {
  position: absolute;
  top: 19px;
  left: 30px;
  font-size: 28px;
  font-weight: bold;
  }
  .circle-container {
  position: relative;
  width: 230px;
  height: 230px;
  margin-top: 57px;
  }
  .login-box {
  margin-top: 44px;
  padding: 20px;
  }
  
  .btn-login {	
  padding: 10px 5px;
  font-size: 16px;
  }
  .fs-30 {
  font-size: 22px;
  }
  .fs-18 {
  font-size: 16px;
  }
  .form-group {
  margin-bottom: 1rem;
  }
  .circle-container::after {
  bottom: 7px;
  left: 85%;	
  width: 51px;
  height: 61px;
  
  }
  .login-wrapper {
  min-height: 100%;
  }
  .language-select {
  top: 17px;
  right: 8%;
  }
  
  }
  
    
  /* mks */
  .main-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 0;
    min-width: 600px;
}
  .card {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: none;
    overflow: hidden;
    background: white;
  }
  
  .card-header {
    background: white;
    border-bottom: none;
    padding: 2rem 4rem 1rem;
    text-align: start;
  }
  
  .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  
  .card-subtitle {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .card-body {
    padding: 1rem 50px 2rem;
  }
  
  .nav-tabs {
    border-bottom: 2px solid #ecf0f1;
    margin-bottom: 2rem;
  }
  
  .nav-tabs .nav-link {
    border: none;
    color: #7f8c8d;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-tabs .nav-link:hover {
    color: #25d366;
    background: transparent;
  }
  
  .nav-tabs .nav-link.active {
    color: #25d366;
    background: transparent;
    border-bottom: 3px solid #25d366;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  
  .country-select {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 0.75rem;
    background: white;
    transition: all 0.3s ease;
  }
  
  .country-select:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
  }
  
  .phone-input {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .phone-input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
  }
  
  
  
  .learn-more {
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
  }
  
  .learn-more:hover {
    color: #128c7e;
    text-decoration: underline;
  }
  
  .input-group {
    position: relative;
  }
  
  .country-flag {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
  }
  
  .tab-content {
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .wa-link-input {
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .wa-link-input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
  }
  
  .openbox .country-dropdown{
    border: 0px solid;
    padding: 13px 9px 7px 0;
    background: transparent;
  }
  
  .form-control.open-input {
    border: 0px solid;
    padding: 12px 0 5px 10px;
  }
  .openbox .country-select {
  
    width: 200px;
  }
  .border_b{border-bottom: 2px solid #0E1116;}
  
  .nav-container {
    max-width: 800px;
    margin: 0 auto;
}

.nav-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
}



.nav-item.active {
    color: #2c3e50;
}

.nav-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
  background: #E6E9ED;
}


.nav-icon i {
    font-size: 24px;
    color: #6c757d;
}

.nav-item.active .nav-icon {
  background: rgba(0,220,85, 0.20);
    transform: scale(1.1);
}


.nav-item.active .nav-icon img {
filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(474%) hue-rotate(83deg) brightness(100%) contrast(100%);
        
}

.iconse {
  filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(474%) hue-rotate(83deg) brightness(100%) contrast(100%);
  position: absolute;
  left: 2px;
  top: 18px;
}

.nav-text {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.nav-item:hover .nav-text {
    font-weight: 600;
}

.nav-item.active .nav-text {
    font-weight: 600;
    color: #25d366;
}



/* Custom icons styling */
.search-icon::before {
    content: "\1F50D";
    font-size: 20px;
}

.whatsapp-icon::before {
    content: "\1F4AC";
    font-size: 20px;
}

.history-icon::before {
    content: "\1F4DA";
    font-size: 20px;
}

.create-icon::before {
    content: "\1F517";
    font-size: 20px;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.search-content, .history-content, .create-content {
  text-align: center;
  color: #0E1116;
}

.search-content h5, .history-content h5, .create-content h5 {
  color: #0E1116;
  margin-bottom: 15px;
}

.search-form .form-control {
  margin-bottom: 15px;
  padding: 16px 50px;
  font-size: 18px;

  color: #50504C;
}

.history-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: left;
}

.history-item strong {
  color: #0E1116;
}

.create-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.create-option {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.create-option:hover {
  background: #e9ecef;
  border-color: #25d366;
}

.search-form{  position: relative;}

/* Responsive design */
@media (max-width: 768px) {
  .nav-grid {
      gap: 15px;
  }
  
  .nav-icon {
      width: 50px;
      height: 50px;
  }
  
  .nav-icon i {
      font-size: 20px;
  }
  
  .nav-text {
      font-size: 12px;
  }
  
  .nav-item {
    padding: 0 10px;
}
  .main-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 0;
    min-width: 10%;
    width: 100%;
}
.card-body {
  padding: 1rem 20px 0rem;
}
.nav-tabs .nav-link {

  padding: 0.8rem 1px;

}

.otp-input {
	width: 34px;
	height: 41px;
}
.otp-container {
	gap: 13px;
}
.form-check-label.ms-3.fs-18 {
	width: 96%;
}
}

@media (max-width: 480px) {
  .nav-grid {
      gap: 10px;
  }
  
  .nav-icon {
      width: 45px;
      height: 45px;
  }
  
  .nav-icon i {
      font-size: 18px;
  }
  
  .nav-text {
      font-size: 11px;
  }
}