.wwc-form-row input[type=text],
.wwc-form-row input[type=email],
.wwc-form-row input[type=password],
.wwc-form-row input[type=url] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.wwc-form-row input[type=text]:focus,
.wwc-form-row input[type=email]:focus,
.wwc-form-row input[type=password]:focus,
.wwc-form-row input[type=url]:focus {
  outline: none;
  border-color: #0073aa;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.wwc-button {
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.wwc-button:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.wwc-form-container {
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .wwc-form-container {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .wwc-form-container {
    padding: 30px;
  }
}

.wwc-form-container {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .wwc-form-container {
    margin-bottom: 30px;
  }
}
.wwc-form-row {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .wwc-form-row {
    margin-bottom: 20px;
  }
}
.wwc-form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #23282d;
}
.wwc-form-row label.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}
.wwc-form-row label.checkbox-label input[type=checkbox] {
  margin: 0;
}
.wwc-form-row .description {
  margin-top: 5px;
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}
.wwc-form .required {
  color: #d63638;
  margin-left: 5px;
}

.wwc-notice-success {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #91f6b3;
  border: 1px solid #0c963a;
  border-radius: 4px;
  color: #086728;
}
.wwc-notice-error {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fdf5f5;
  border: 1px solid #d63638;
  border-radius: 4px;
  color: #b42527;
}
.wwc-notice-info {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #c5dff4;
  border: 1px solid #2271b1;
  border-radius: 4px;
  color: #1a5686;
}
.wwc-notice-warning {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fbf3dc;
  border: 1px solid #dba617;
  border-radius: 4px;
  color: #ad8312;
}

.wwc-button-primary {
  background: #0073aa;
  color: #fff;
}
.wwc-button-primary:hover {
  background: #005177;
}
.wwc-button-secondary {
  background: #f0f6fc;
  color: #23282d;
  border: 1px solid #ddd;
}
.wwc-button-secondary:hover {
  background: #dbe9f8;
}

.wwc-stats-container {
  padding: 15px;
  background: #f0f6fc;
  border-radius: 4px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .wwc-stats-container {
    padding: 20px;
  }
}
.wwc-stats-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media (min-width: 768px) {
  .wwc-stats-grid {
    margin: 30px;
  }
}
.wwc-stats-box {
  background: #fff;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
}
.wwc-stats-box h4 {
  margin: 0 0 10px;
  color: #23282d;
}
.wwc-stats-box .stat-number {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #0073aa;
}

.wwc-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 10px 0;
}
.wwc-link-box code {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-break: break-all;
  padding: 5px;
  background: #f0f6fc;
  border-radius: 4px;
  width: 100%;
}
.wwc-link-box input[type=text] {
  width: 100%;
}
.wwc-link-box button {
  width: 20%;
}

.wwc-info-section {
  margin-bottom: 20px;
  padding: 15px;
  background: #f0f6fc;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .wwc-info-section {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .wwc-info-section {
    padding: 20px;
  }
}
.wwc-info-list {
  margin: 15px 0;
  padding-left: 20px;
}
.wwc-info-list li {
  margin: 10px 0;
  line-height: 1.4;
}

.wwc-requirements-list {
  margin: 15px 0;
  padding-left: 20px;
  list-style-type: disc;
}
.wwc-requirements-list li {
  margin: 10px 0;
}
.wwc-requirements .requirement-met {
  color: #0c963a;
  font-weight: bold;
  margin-left: 5px;
}
.wwc-requirements .requirement-pending {
  color: #d63638;
  margin-left: 5px;
}

.password-container {
  position: relative;
  width: 100%;
}

.password-container input[type=password],
.password-container input[type=text] {
  width: 100%;
  padding-right: 40px; /* Space for the icon */
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
}

.password-toggle:hover {
  color: #333;
}

/* For when password is visible */
.password-toggle .gem-mdi {
  font-size: 20px;
}

.wwc-button a strong {
  padding: 10px 20px;
}

body .wp-block-button .wp-block-button__link {
  padding: 10px 20px;
  background-color: #f24f45;
  color: white;
  height: 60px;
}
body .wp-block-button .wp-block-button__link:hover {
  background-color: white;
  color: #f24f45 !important;
  border: 1px solid #f24f45;
}

.wwc-qr-code-container .wwc-qr-code {
  max-width: 30%;
  margin: 0 auto;
}