/**
 * 註冊彈窗專用樣式 - 全屏帶滾動條
 */

/* 註冊彈窗整體容器 */
.bimlib-register-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

/* 半透明遮罩層 */
.bimlib-register-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255);
    z-index: 1
}

/* 註冊彈窗容器 - 全屏滾動 */
.bimlib-register-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* 註冊彈窗內容 */
.bimlib-register-content {
    position: relative;
    max-width: 1170px;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
    padding-top: 100px;
}

/* 關閉按鈕 */
.bimlib-register-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.bimlib-register-close:hover {
    color: #333;
    background-color: #f0f0f0;
}

/* 標題樣式 */
.bimlib-register-content h2 {
    color: #090909;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 38px;
    margin-bottom: 36px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    font-family: "futura-pt", "aktiv-grotesk", "Microsoft JhengHei", "微軟正黑體", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* 表單樣式 - 繼承 WPForms 樣式並增強 */
.bimlib-register-content .wpforms-form {
    max-height: none;
}

.bimlib-register-content .wpforms-field {
    margin-bottom: 20px;
}

.bimlib-register-content .wpforms-field label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #555;
}

.bimlib-register-content .wpforms-field input,
.bimlib-register-content .wpforms-field select,
.bimlib-register-content .wpforms-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.bimlib-register-content .wpforms-field input:focus,
.bimlib-register-content .wpforms-field select:focus,
.bimlib-register-content .wpforms-field textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

/* 提交按鈕 */
.bimlib-register-content .wpforms-submit {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.bimlib-register-content .wpforms-submit:hover {
    background-color: #005a87;
}

/* 錯誤訊息 */
.bimlib-register-content .wpforms-error-container {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3232;
}

/* 成功訊息 */
.bimlib-register-content .wpforms-confirmation-container {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #46b450;
}

/* 滾動條樣式 (Webkit) */
.bimlib-register-container::-webkit-scrollbar {
    width: 8px;
}

.bimlib-register-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.bimlib-register-container::-webkit-scrollbar-thumb {
    border-radius: 4px;
}

.bimlib-register-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 124, 186, 0.8);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .bimlib-register-content {
        width: 95%;
        padding: 20px;
    }
    
    .bimlib-register-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .bimlib-register-container {
        padding: 20px 15px;
    }
}