/*
Theme Name: HaoHao Theme (Agent Auto-Converted)
Theme URI: https://example.com/haohao-theme
Author: Your Team
Description: Auto-converted from HTML via Agent workflow
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: haohao-theme
*/


#agree-btn {
    padding: 5px 10px;
    font-size: 20px;
    min-width: 200px;
    margin-top: 40px;
    transition: all 0.5s ease-in-out;
}

#agree-btn[disabled] {
    opacity: 0.5;
}

@media (max-width: 768px) {
    #agree-btn {
        font-size: 16px;
    }
    #header {
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        padding: 10px 0;
    }
}

.form-messages {
    color: red;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .section-content {
        background-image: url('./assets/images/bg-mobile.jpg') !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.page-loading,
.loading-circle {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  animation: skLinRotate 1s ease-in-out infinite alternate;
}
.page-loading:after,
.loading-circle:after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #B71010;
}

.loading-circle {
  width: 32px;
  height: 32px;
}

.js-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.js-loading.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}