/* Updated UI styles */
#wc-otp-login-wrap {
  max-width: 450px;
  margin: 0 auto;
  padding: 12px;
}
.wc-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}
.wc-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.wc-otp-row input {
  letter-spacing: 8px;
  text-align: center;
  font-size: 20px;
  padding: 12px;
}
.wc-input {
  flex: 1;
  padding: 10px;
  border-width: 0px 0px 1px 0px!important;
  border-radius: 6px;
  font-size: 16px!important;
  letter-spacing: 1px;
  font-weight: 500;
}

.wc-input::placeholder {
    color: #999; 
    opacity: 1;  
    font-size:13px;
    font-weight:100;
}


.wc-btn-light {
  padding: 10px 18px;
  border: 1px solid #333;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}
.wc-btn-light:hover {
  background: #f3f3f3;
}
#wc-login-btn.wc-btn-outline {
  width: 100%;
  padding: 12px;
  border: 1px solid #999;
  background: #fff;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 1px;
  color: #444;
}
#wc-login-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.wc-divider {
  margin-top: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.wc-resend {
  margin-top: 10px;
  font-size: 13px;
  color: #444;
  text-align: right;
  font-weight: bold;
  cursor: pointer;
}
.wc-google-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-decoration: none;

}

.wc-count-anim {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    animation: fadeBlink 1s infinite;
}

.wc-or-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 10px 0;
}

.wc-or-line {
    height: 1px;
    background: #dcdcdc;
    flex: 1;
}

.wc-or-text {
    padding: 0 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}


.wc-toast {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999999;
}

.wc-toast.show {
    top: 20px;
    opacity: 1;
}

/* Modern Toast Notification */
.wc-toast {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40, 40, 40, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 10px;
    opacity: 0;
    z-index: 999999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: all 0.4s cubic-bezier(.25,.8,.25,1);
    pointer-events: none;
}

.wc-toast.show {
    top: 20px;
    opacity: 1;
}

.wc-toast.success {
    background: rgba(46, 204, 113, 0.85); /* green */
}

.wc-toast.error {
    background: rgba(231, 76, 60, 0.85); /* red */
}

.wc-toast.warning {
    background: rgba(241, 196, 15, 0.85); /* yellow */
}

.wc-toast.info {
    background: rgba(52, 152, 219, 0.85); /* blue */
}


@keyframes fadeBlink {
    0% { opacity: 1; }
    50% { opacity: .3; }
    100% { opacity: 1; }
}
