/* 
 * Email Gate Styles 
 * メール登録フォーム用のスタイル
 */


/* Inline Email Gate Styles */
.inline-email-gate {
    padding: 48px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 100%);
    border-top: 1px solid #d1dde8;
    border-bottom: 1px solid #d1dde8;
}

.inline-email-gate-content {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 44px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0,0,0,0.06);
    border-left: 5px solid #06C755;
}

.inline-email-gate-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.inline-email-gate-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06C755, #00a843);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.inline-email-gate-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

/* Disclaimer box */
.disclaimer-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.disclaimer-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.75;
    margin: 0;
}

/* Form */
.email-gate-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.email-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #cbd5e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: #fafafa;
    color: #1a1a2e;
}

.email-input::placeholder {
    color: #a0aec0;
}

.email-input:focus {
    border-color: #06C755;
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.15);
    background: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 14px;
    color: #2d3748;
    font-weight: 600;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #06C755;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-group label {
    cursor: pointer;
    line-height: 1.5;
}

/* Submit button */
.inline-email-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #06C755, #00a843);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
    box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
    margin-top: 4px;
}

.inline-email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.45);
}

.inline-email-submit-btn:active {
    transform: translateY(0);
}

.inline-email-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Locked tool links state */
.tool-links-locked {
    pointer-events: none;
    opacity: 0.4;
    user-select: none;
}

/* Responsive */
@media (max-width: 600px) {
    .inline-email-gate-content {
        padding: 28px 20px;
    }
    .inline-email-gate-title {
        font-size: 16px;
    }
}