#bee1-login-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bee1-modal-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.bee1-tabs {
    display: flex;
    border: 1px solid #96be36;
    margin-bottom: 20px;
    border-radius: 50px;
	overflow:hidden;
}

.bee1-tab-link {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  transition: all 0.2s ease-in-out;
}
.bee1-tabs button{
	border-radius:0;
}
.bee1-tab-link.active, .bee1-tab-link:hover {
    color: #fff;
    background: #96be36;
}

.bee1-tab-content {
  display: none;
}

.bee1-tab-content.active {
  display: block;
}

.bee1-form-heading {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.bee1-subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

#bee1-login-form input,
#bee1-register-form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

#bee1-login-form input:focus,
#bee1-register-form input:focus {
  border-color: #0071a1;
  outline: none;
}
form#bee1-login-form button[type="submit"], form#bee1-register-form button[type="submit"]{
    background: #96be36;
    border-color: #96be36;
    color: #fff;
    border-radius: 50px;
    min-width: 100%;
}
#bee1-register-form input[type="tel"] {
    text-align: right;
}

.bee1-btn {
  width: 100%;
  background: #0071a1;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.bee1-btn:hover {
  background: #005f8a;
}

.bee1-msg-area {
  margin-top: 15px;
  color: red;
  font-size: 14px;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.loader-dots {
  display: flex;
  justify-content: center;
  line-height:50px;
  align-items: center;
  padding:7px;
}
.loader-dots span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}
.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }
.loader-dots span:nth-child(3) { animation-delay: 0; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
.bee1-btn.bee1-disabled{
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}